diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-10-28 08:31:52 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-10-28 08:31:52 +0000 |
commit | 94fa24ec096e8e5f828e7028100ec542144443c7 (patch) | |
tree | 2d48cea72123ddc66250fd6b4dc076bd477ffa9b /protocols/Gadu-Gadu/src/core.cpp | |
parent | c8e2953e01de65ce2baffe84d72366f6a6efebc1 (diff) |
GG: Don't do debug log in EV_PROTO_DBSETTINGSCHANGED method unless it's debug build
git-svn-id: http://svn.miranda-ng.org/main/trunk@15630 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/src/core.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/core.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Gadu-Gadu/src/core.cpp b/protocols/Gadu-Gadu/src/core.cpp index e9b7bb0e04..b97728c4a9 100644 --- a/protocols/Gadu-Gadu/src/core.cpp +++ b/protocols/Gadu-Gadu/src/core.cpp @@ -1327,7 +1327,9 @@ int GGPROTO::dbsettingchanged(WPARAM hContact, LPARAM lParam) DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING *) lParam;
char *szProto = NULL;
+#ifdef DEBUGMODE
debugLogA("dbsettingchanged(): fired. szModule=%s szSetting=%s", cws->szModule, cws->szSetting);
+#endif
// Check if the contact is NULL or we are not online
if (!isonline())
|