strings are cutted in logs

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
last_deceneu
Newbie
Newbie
Posts: 1
Joined: Mon Jun 09, 2008 1:50 am

strings are cutted in logs

Post by last_deceneu »

Hello!

I runned the following command
WINEDEBUG=+rellay wine app.exe
and in log message strings that are bigger are truncated.

It is a way to configure somethink to log entire strings?
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: strings are cutted in logs

Post by vitamin »

last_deceneu wrote:Hello!

I runned the following command
WINEDEBUG=+rellay wine app.exe
and in log message strings that are bigger are truncated.

It is a way to configure somethink to log entire strings?

Code: Select all

WINEDEBUG=+rellay wine app.exe &> /tmp/wine_relay.txt
Or

Code: Select all

WINEDEBUG=+rellay wine app.exe 2>&1 > /tmp/wine_relay.txt
Locked