Dear friends,
In my opinion it would be very useful to change the file name error that actually is a constant "error.log"
At the moment I declare
PUBLIC cErrorFile := "myerror.log"
modify errsysw.prg
// Generates a file with an Error Log
BEGIN SEQUENCE
oOldError = ErrorBlock( { || DoBreak() } )
// MemoWrit( "error.log", cErrorLog )
MemoWrit( M->cErrorFile, cErrorLog )
END SEQUENCE
ErrorBlock( oOldError )
In a multi user scenario I obtain an error file for every user instead of an unique error.log that contains the latest error.
Best regards
marco