Mercurial > pidgin
diff libpurple/win32/win32dep.c @ 27231:627d23bfdb05
Increase the logging level of some debugging messages that seemed to be a
bit more important than "informational". From a patch by Mauro but with
additional changes recommended by rekkanoryo.
Fixes #8751.
committer: Elliott Sales de Andrade <qulogic@pidgin.im>
author | mauro.brasil@tqi.com.br |
---|---|
date | Thu, 02 Jul 2009 04:26:00 +0000 |
parents | 6a3943412f2d |
children | b74fa3d29cda |
line wrap: on
line diff
--- a/libpurple/win32/win32dep.c Thu Jul 02 01:33:11 2009 +0000 +++ b/libpurple/win32/win32dep.c Thu Jul 02 04:26:00 2009 +0000 @@ -326,7 +326,7 @@ if (rv != ERROR_SUCCESS) { char *errmsg = g_win32_error_message(rv); - purple_debug_info("wpurple", "Could not open reg key '%s' subkey '%s'.\nMessage: (%ld) %s\n", + purple_debug_error("wpurple", "Could not open reg key '%s' subkey '%s'.\nMessage: (%ld) %s\n", ((rootkey == HKEY_LOCAL_MACHINE) ? "HKLM" : (rootkey == HKEY_CURRENT_USER) ? "HKCU" : (rootkey == HKEY_CLASSES_ROOT) ? "HKCR" : "???"), @@ -356,7 +356,7 @@ if (rv != ERROR_SUCCESS) { char *errmsg = g_win32_error_message(rv); - purple_debug_info("wpurple", "Could not read from reg key value '%s'.\nMessage: (%ld) %s\n", + purple_debug_error("wpurple", "Could not read from reg key value '%s'.\nMessage: (%ld) %s\n", valname, rv, errmsg); g_free(errmsg); }