mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Win32: add the --win32log option to log stdout and stderr to files
Adding --win32log as the first command line option on Windows will now log all stdout and stderr output to the files subsurface_err.log and subsurface_out.log in the working directory. This change required a new argument 'bool logfile' to be added to: subsurface_console_init() which is defined in all platform files (linux.c, macos.c, etc.) Example usage: subsurface.exe --win32log -v -v -v Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
7c8461a328
commit
4a894e0713
7 changed files with 29 additions and 12 deletions
|
@ -215,9 +215,10 @@ int subsurface_zip_close(struct zip *zip)
|
|||
}
|
||||
|
||||
/* win32 console */
|
||||
void subsurface_console_init(bool dedicated)
|
||||
void subsurface_console_init(bool dedicated, bool logfile)
|
||||
{
|
||||
(void)dedicated;
|
||||
(void)logifle;
|
||||
/* NOP */
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue