Fixed -debugmsg +server.

diff --git a/loader/main.c b/loader/main.c
index 3eb4356..5fa8dbb 100644
--- a/loader/main.c
+++ b/loader/main.c
@@ -62,15 +62,15 @@
     /* Create the initial process */
     if (!PROCESS_Init()) return 0;
 
-    /* Set server debug level */
-    CLIENT_SetDebug( TRACE_ON(server) );
-
     /* Initialize syslevel handling */
     SYSLEVEL_Init();
 
     /* Parse command line arguments */
     MAIN_WineInit( argc, argv );
 
+    /* Set server debug level */
+    CLIENT_SetDebug( TRACE_ON(server) );
+
     /* Load the configuration file */
     if (!PROFILE_LoadWineIni()) return FALSE;