changeset 12:b03906396b3a trunk

[svn] Debugging notices.
author nenolod
date Mon, 24 Oct 2005 14:29:19 -0700
parents ec508fe218b9
children 9f145cae54e6
files audacious/pluginenum.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/audacious/pluginenum.c	Mon Oct 24 14:19:02 2005 -0700
+++ b/audacious/pluginenum.c	Mon Oct 24 14:29:19 2005 -0700
@@ -199,7 +199,7 @@
         return;
 
     if (!(module = g_module_open(filename, 0))) {
-        g_warning("Failed to load plugin (%s): %s", 
+        printf("Failed to load plugin (%s): %s\n", 
                   filename, g_module_error());
         return;
     }
@@ -213,12 +213,12 @@
             plugin->filename = g_strdup(filename);
             type->init(PLUGIN_GET_INFO(func));
 
-            g_message("Loaded %s plugin (%s)", type->name, filename);
+            printf("Loaded %s plugin (%s)\n", type->name, filename);
             return;
         }
     }
 
-    g_warning("Invalid plugin (%s)", filename);
+    printf("Invalid plugin (%s)\n", filename);
     g_module_close(module);
 }