I’m trying to launch the game with arguments for enabling or not the verbosity of the logs.
I’ve tried with -LogCmds=“…” or -ini:File[Section]Key=Value and both do not work.
Blockquote
LogInit: Command Line: ksgm kadeo.net:7777 -id=XXXXXXXX -pass=xxxxxxxx -game -LogCmds=“LogOnline Verbose, LogOnlineSession Verbose, LogNet Verbose” -log=DebugClient.log
OR
Blockquote
LogInit: Command Line: ksgm kadeo.net:7777 -id=XXXXXXXX -pass=xxxxxxxx -game -ini:Engine:[Core.Log]:LogOnline=Verbose -ini:Engine:[Core.Log]:LogOnlineSession=Verbose -ini:Engine:[Core.Log]:LogNet=Verbose -log=DebugClient.log
This is for a shipping build.
If I modify directly the Engine.ini which is located in %appdata%/Local/KSGM/Saved/Config/WindowsClient
and add the core.log section
Blockquote
[Core.Log]
LogOnline=Verbose
LogOnlineSession=Verbose
LogNet=Verbose
It works, the log verbosity is changed within the log file.
If I try to launch a debug version within VS2022 with these arguments, it works, the verbosity is changed.
Is there something wrong ?
Txs for your help.
D.