Running with a docker image - not seeing any logs

Hi there!

Relatively new to multiplay here… I’ve noticed that when I run a direct upload build, I see logs in the server log tab fine, but when I run the same with a docker image, I don’t see any logs. Is there something special in my build configuration arguments I need to specify (or my docker entrypoint.sh) to redirect logs appropriately so i can see them in the “logs” tab in my “server” in multiplay?

Thanks!

Hi gogogotchi!

Could you please share your current command line arguments from your build configuration?

I suspect your logs directory is misconfigured, which can be fixed using the $$log_dir$$ parameter and a log directory/file flag to your server binary.

Hope this helps, but with your command line arguments and knowledge of your server binary flags I can help more!

eth0net

When you get this sorted out don’t hesitate to join our logging closed beta for logging

Apologies for the delay! Here they are:

-port $$port$$ -queryport $$query_port$$ -logFile $$log_dir$$/Engine.log -batchmode -nographics -region us -r us

Don’t have it sorted just yet but already requested via the form!

… and this is what my command line args look like (from entrypoint.sh) -

./StandaloneLinux64 -batchmode -nographics $session $region $lobby $publicip $publicport -logFile

… the $session etc are pass thrus from the build configuration above… taken from the example entrypoint.sh; e.g.

while getopts s:r:l:i:p: flag
do
case “{flag}" in s) session="-session {OPTARG}”;; # custom session name
r) region=“-region {OPTARG}";; # custom region l) lobby="-lobby {OPTARG}”;; # custom lobby
i) publicip=“-publicip {OPTARG}";; # custom public ip p) publicport="-publicport {OPTARG}”;; # custom public port
esac
done

bump? plz plz plz :slight_smile:

halp?