Thousands of lines with fixme messages

Questions about Wine on Linux
Locked
tigerjack
Level 2
Level 2
Posts: 10
Joined: Wed Jan 05, 2022 6:47 am

Thousands of lines with fixme messages

Post by tigerjack »

My log files are polluted by these messages coming from wine (I have ~100k of them).

Code: Select all

018c:fixme:bidi:GetCharacterPlacementW flags 0x00000032 ignored
I'm simply running PDF XChange Editor under wine.
Other useful info
  • wine-staging 7.0rc4-1 [installed]
  • winetricks 20210825-1
  • Linux kernel 5.15.12-arch1-1
  • My system is using Wayland (and therefore XWayland for wine)
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: Thousands of lines with fixme messages

Post by dimesio »

FIXMEs are just unimplemented functions. If your app is working, don't worry about them.

You can turn various messages on or off with WINEDEBUG. See https://wiki.winehq.org/Debug_Channels for details.
tigerjack
Level 2
Level 2
Posts: 10
Joined: Wed Jan 05, 2022 6:47 am

Re: Thousands of lines with fixme messages

Post by tigerjack »

Thank you, putting

Code: Select all

export WINEDEBUG="fixme-all"
did the trick.
Locked