diff Main.lua @ 439:2baf8d90d8a8

Shortened two common debug statements so as to not spam chat as much when debugging.
author MMOSimca <MMOSimca@gmail.com>
date Fri, 27 Feb 2015 07:40:07 -0500
parents 0a83510474bc
children a4256abd13b7
line wrap: on
line diff
--- a/Main.lua	Wed Feb 25 16:58:25 2015 -0500
+++ b/Main.lua	Fri Feb 27 07:40:07 2015 -0500
@@ -1294,7 +1294,7 @@
 -- This function (and the following function) are to stop 'HandleItemUse' from triggering when you put an item that would normally be opened into the bank, guild bank, etc.
 function WDP:StopChatLootRecording(event_name)
     if not block_chat_loot_data then
-        Debug("%s: Detected event that will taint chat-based loot recording. Pausing data collection.", event_name)
+        Debug("%s: Pausing chat-based loot recording.", event_name)
         ClearChatLootData()
         block_chat_loot_data = true
     end
@@ -1303,7 +1303,7 @@
 
 function WDP:ResumeChatLootRecording(event_name)
     if block_chat_loot_data then
-        Debug("%s: Detected event that signals the end of taint issues with chat-based loot recording. Resuming data collection.", event_name)
+        Debug("%s: Resuming chat-based loot recording.", event_name)
         block_chat_loot_data = false
     end
 end