summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Goodwin <julien@studio442.com.au>2008-01-27 12:30:16 +1100
committerDaniel Stone <daniel@fooishbar.org>2008-01-29 14:46:15 +1100
commit94f412cb7e954fe872fed979057cbdfbef953c6f (patch)
tree1a2374e57bb72b1e0889ab3f186d216d3fb45581
parent442838fcb3bf07ac57553ae5600d9e6c59a559bb (diff)
Loader: Fix verbosity confusion
'Loading foo' is verbosity 3, whereas 'already built-in' is verbosity 0. This means that gdm's log would just be full of bare 'module already built-in' messages.
-rw-r--r--hw/xfree86/loader/loadmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/loader/loadmod.c b/hw/xfree86/loader/loadmod.c
index 584cabfd1..45e9cb374 100644
--- a/hw/xfree86/loader/loadmod.c
+++ b/hw/xfree86/loader/loadmod.c
@@ -864,7 +864,7 @@ doLoadModule(const char *module, const char *path, const char **subdirlist,
for (cim = compiled_in_modules; *cim; cim++)
if (!strcmp (module, *cim))
{
- xf86MsgVerb(X_INFO, 0, "Module \"%s\" already built-in\n", module);
+ xf86MsgVerb(X_INFO, 3, "Module \"%s\" already built-in\n", module);
return (ModuleDescPtr) 1;
}