http://bugs.winehq.org/show_bug.cgi?id=3372
------- Additional Comments From wijn@wanadoo.nl 2005-27-09 13:03 ------- And this is the file compressed with bzip2?
That is big file indeed.
Here is a tip from the developers list to create smaller logs:
you can add this to your user.reg file to limit size of it (It's two lines, split for readability):
[Software\Wine\Debug] 1125240062 "Relayexclude"="RtlEnterCriticalSection;RtlLeaveCriticalSection; _EnterSysLevel;_LeaveSysLevel;_CheckNotSysLevel;NtCurrentTeb; LdrAccessResource;RtlUpperChar;kernel32.97;kernel32.98;TlsGetValue"
If that is not enough send the last part. You can use tools like split and csplit for the job.
Here is an example using dd. Say you have a 100MB log, called wine.log
The command:
dd if=wine.log of=partwine.log bs=1000000 skip=70
will create a 30MB partwine.log (dd skips the first 70*1000000=70MB of the log)
Compress that and upload it.