diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-11 17:12:17 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-11 17:12:17 +0300 |
commit | 1f0b0e7a2047320d6808ac565eb35d66905252fd (patch) | |
tree | 127467c2414340ff442a517103f7937bfe3958e0 /plugins/Variables/src/variables.cpp | |
parent | 5bbeb86b16369c9978d006b445b61a941895ccf3 (diff) |
code cleaning for old shitty helper
Diffstat (limited to 'plugins/Variables/src/variables.cpp')
-rw-r--r-- | plugins/Variables/src/variables.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Variables/src/variables.cpp b/plugins/Variables/src/variables.cpp index 479f18d34b..ddad427cd9 100644 --- a/plugins/Variables/src/variables.cpp +++ b/plugins/Variables/src/variables.cpp @@ -355,7 +355,7 @@ wchar_t* formatString(FORMATINFO *fi) if ((fi->eCount + fi->pCount) > 5000) { fi->eCount++; fi->pCount++; - log_debugA("Variables: Overflow protection; %d parses", (fi->eCount + fi->pCount)); + log_debug(0, "Variables: Overflow protection; %d parses", (fi->eCount + fi->pCount)); return nullptr; } @@ -416,7 +416,7 @@ int LoadVarModule() registerAliasTokens(); registerMetaContactsTokens(); - log_debugA("Variables: Internal tokens registered"); + log_debug(0, "Variables: Internal tokens registered"); if (g_plugin.getByte(SETTING_PARSEATSTARTUP, 0)) { FORMATINFO fi = { 0 }; @@ -427,7 +427,7 @@ int LoadVarModule() mir_free(fi.szFormat.w); } } - log_debugA("Variables: Init done"); + log_debug(0, "Variables: Init done"); return 0; } |