Mercurial > pidgin
comparison libpurple/plugin.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 | 01f1929d0936 |
| children | 4fd6b50d03b3 |
comparison
equal
deleted
inserted
replaced
| 27230:75acd9ad14be | 27231:627d23bfdb05 |
|---|---|
| 220 { | 220 { |
| 221 if (purple_strequal(filename, plugin->path)) | 221 if (purple_strequal(filename, plugin->path)) |
| 222 return plugin; | 222 return plugin; |
| 223 else if (!purple_plugin_is_unloadable(plugin)) | 223 else if (!purple_plugin_is_unloadable(plugin)) |
| 224 { | 224 { |
| 225 purple_debug_info("plugins", "Not loading %s. " | 225 purple_debug_warning("plugins", "Not loading %s. " |
| 226 "Another plugin with the same name (%s) has already been loaded.\n", | 226 "Another plugin with the same name (%s) has already been loaded.\n", |
| 227 filename, plugin->path); | 227 filename, plugin->path); |
| 228 return plugin; | 228 return plugin; |
| 229 } | 229 } |
| 230 else | 230 else |
