Is it possible to turn Verbose logs on in Shipping?

Hello everyone,

We are using Steam integration for our game and dedicated server. Our dedicated server won’t show up in the server browser via public IP, however, it can be seen in the LAN tab - the LAN setting is turned off though.

We would be able to track down the problem if we could see some more detailed logs about what is going on with the OnlineSubsystem, maybe we have configured something incorrectly (we have tried GameServerQueryPort 27015 and 27016)

The question is: is it possible to turn verbose logs in the Shipping Build for OnlineSubsystem (LogOnline)?
We have already tried adding -LogCmds="LogOnline All" to the startup commands but I believe that these logs might be filtered out in the shipping build.

Hi Lupix,

Yes, you can turn on VeryVerbose logs (this is what All does) in shipping builds. As you have noticed, the LogCmds commandline option is only available in non-shipping builds. You will need to recook your title with the following in your title’s DefaultEngine ini file (Usually in the TITLENAME/Config/ folder).

[Core.Log]
LogOnline=All

Hope this helps.

That did the trick! Thank you.