Susan Cragin wrote: > Aren't these all things that have to be turned on in the first place, with winedbg? No. Wine does not have a special "logger" process. All Wine has is a mechanism to enable/disable printing of some messages from all over the code. Ex: Code: if (logging_enabled) printf("Some log message\n"); One can control what logging enabled/disables via WINEDEBUG environment variable.