how to hide this : fixme:nsi:ipv6_forward_enumerate_all not implemented

Questions about Wine on Linux
Locked
sevkme
Newbie
Newbie
Posts: 1
Joined: Wed Jan 11, 2023 9:45 pm

how to hide this : fixme:nsi:ipv6_forward_enumerate_all not implemented

Post by sevkme »

007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
007c:fixme:nsi:ipv6_forward_enumerate_all not implemented
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: how to hide this : fixme:nsi:ipv6_forward_enumerate_all not implemented

Post by jkfloris »

You can use the WINEDEBUG variable to control Wine's output.

Hide only the nsi messages:

Code: Select all

WINEDEBUG=-nsi wine program.exe
Hide all fixme messages, but show all err messages:

Code: Select all

WINEDEBUG=fixme-all wine program.exe
Hide all messages:

Code: Select all

WINEDEBUG=-all wine program.exe
Locked