diff Modules/Debug.lua @ 24:554b30908b33 v0.1

- Fixed a bug with the mail where items get recorded by the mail scanner and the bag scanner. - Fixed some minor issues not visible to the user.
author Asa Ayers <Asa.Ayers@Gmail.com>
date Sun, 11 Jul 2010 09:24:33 -0700
parents 66b7c3f5937e
children 003de902ae64
line wrap: on
line diff
--- a/Modules/Debug.lua	Thu Jul 08 23:55:05 2010 -0700
+++ b/Modules/Debug.lua	Sun Jul 11 09:24:33 2010 -0700
@@ -4,7 +4,8 @@
 local utils = addonTable.utils
 
 
-function addon:Debug(msg)
+function addon:Debug(msg, ...)
+	msg = format(msg, ...)
 	self:Log(msg, " |cffffff00DEBUG")
 end