# HG changeset patch # User MMOSimca # Date 1425040807 18000 # Node ID 2baf8d90d8a8ab5f61f45ac390130ed5fee51424 # Parent 275b6caabf6c267f5ba45c681211fe1a1aba391d Shortened two common debug statements so as to not spam chat as much when debugging. diff -r 275b6caabf6c -r 2baf8d90d8a8 Main.lua --- 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