PDA

View Full Version : Host and client on same machine. Are console.log msgs comingled in the same file?



webdove
March 6th, 2023, 16:24
If I join a hosted session using the same computer are there supposed to be two "console.log" files in different places or are all the console messages from client and host comingled in the same file? I tried using the "everything" app and I could only find a single console.log file on my machine.

Zacchaeus
March 6th, 2023, 17:07
There's only one console log for the host. Even if you are joining your own game.

Moon Wizard
March 6th, 2023, 18:57
The console.log file is appended to by any client running on the same machine.

Regards,
JPG

webdove
March 6th, 2023, 20:14
OK, so the console messages from the host app and client app are therefore comingled in the same console.log file if you run both on the same machine whereas they are contained in separate files if you run the client on a different machine.

damned
March 6th, 2023, 21:55
Yes. Each computer has one and one only console.log
If you have two different campaigns loaded on your computer at teh same time the console.log will contain data from both too.

webdove
March 7th, 2023, 02:20
Thank you.