https://bugs.winehq.org/show_bug.cgi?id=55636
Bug ID: 55636 Summary: cannot get rid of prefix status messages Product: Wine Version: 8.16 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: xantares09@hotmail.com Distribution: ---
I would like to be able to get rid of the 2 messages on creation of prefixes, but even with WINEDEBUG=-all they never go away, as seen below:
$ echo "int main() {return 0;}" > main.c $ i686-w64-mingw32-gcc main.c $ rm -rf ~/.wine $ WINEDEBUG=-all wine a.exe wine: created the configuration directory '/home/devel/.wine' wine: configuration in L"/home/devel/.wine" has been updated.
I see from the code that they end up in wine_dbg_printf which is always printed
wouldnt it make sense for these to be part of one of the debug class/channel so that it could be filtered by WINEDEBUG ?