On Wed, Sep 10, 2008 at 7:39 AM, Paul Vriens paul.vriens.wine@gmail.com wrote:
Hi,
Instead of having 200 logfiles we now create one that we can delete afterwards as we know the name. This is not to speed up the tests but merely to get rid of the log files.
We have to pass something for the log mode otherwise we would still have multiple files.
(It also looks like Wine is still appending to that one file which is not the same as on Windows).
Changelog Create only one log file and delete it afterwards
Why don't you just disable logging?
MsiEnableLog(0, NULL, 0);
James Hawkins wrote:
On Wed, Sep 10, 2008 at 7:39 AM, Paul Vriens paul.vriens.wine@gmail.com wrote:
Hi,
Instead of having 200 logfiles we now create one that we can delete afterwards as we know the name. This is not to speed up the tests but merely to get rid of the log files.
We have to pass something for the log mode otherwise we would still have multiple files.
(It also looks like Wine is still appending to that one file which is not the same as on Windows).
Changelog Create only one log file and delete it afterwards
Why don't you just disable logging?
MsiEnableLog(0, NULL, 0);
Hi,
Because that doesn't work. After you mailed that suggestion the other day I of course gave it a try.