Page 1 of 1

Server 'errors' I've only seen since v1.3

Posted: 13 Sep 2012, 17:04
by Guyver1

Re: Server 'errors' I've only seen since v1.3

Posted: 13 Sep 2012, 17:30
by w1lla
Those arent Errors but those arereports that are being sent to the dedicated which is actually something for the devs.

Re: Server 'errors' I've only seen since v1.3

Posted: 13 Sep 2012, 17:53
by Guyver1
ah right, I was seeing that, thinking the server had crashed and was shutting the server down and restarting it :?

Re: Server 'errors' I've only seen since v1.3

Posted: 16 Sep 2012, 22:32
by Guyver1
Ok, its not stopping... I've been seeing this now for over 24 hours, its not stopping???

Re: Server 'errors' I've only seen since v1.3

Posted: 17 Sep 2012, 17:45
by Eole
What's the problem exactly? Is the server crashing or is it just those lines who keep appearing again and again in the log?
If it's the later you can't get rid of it by commenting the line 589 (add "//" at the beginning of the line) in "Libs/Nadeo/ShootMania/WaitingQueue.Script.txt" in your server directory.

Replace:

Code: Select all

log("AllMatchResults = "^AllMatchResults);
By:

Code: Select all

//log("AllMatchResults = "^AllMatchResults);
It will stop the "AllMatchResults" log spam.

http://forum.maniaplanet.com/viewtopic. ... 04#p123404

Re: Server 'errors' I've only seen since v1.3

Posted: 18 Sep 2012, 18:12
by Guyver1
looks like after 3 days of seeing this spam it crashed my server:

http://www.leonlive.co.uk/stuff/LogCrash_0040FC86.txt

Re: Server 'errors' I've only seen since v1.3

Posted: 18 Sep 2012, 18:17
by Guyver1
if i set line 589 to this:

Code: Select all

	while (AllMatchResults.count > 5) {
		AllMatchResults.removekey(0);
;		log("AllMatchResults = "^AllMatchResults);
	}
I get this:

Starting ManiaPlanet date=2012-09-07_11_19 Svn=46537 GameVersion=3.2.0...
Initializing...
Configuration file : dedicated_cfg_Joust.txt
Loading system configuration...
...system configuration loaded
Loading cache...
...OK
Listening for xml-rpc commands on port 5000.
Loading dedicated server configuration...
...Dedicated server configuration loaded
Connecting to master server...
...OK
Identifying on master server...
...OK
Please wait, loading...
URL: maniaplanet://#join=doajoust@SMStormJoust@nadeolabs
Match settings file : MatchSettings\SM_Joust.txt
Loading match settings...
...Match settings loaded
Autostart server on internet
Starting server...
- Warning! -
You seem to be on a private network.
Unless you have configured your NAT,
other players on internet will not be
able to join in...
Script compilation failed: ERROR[Libs/Nadeo/ShootMania/WaitingQueue.Script.txt :
589, 2] syntax error, unexpected MANIASCRIPT_SEMICOLON
ERROR[Libs/Nadeo/ShootMania/WaitingQueue.Script.txt : 589, 2] Missing closing br
ace MANIASCRIPT_BRACKET_CURLY_CL
ERROR[9, 63] Include "Libs/Nadeo/ShootMania/WaitingQueue.Script.txt" was not fou
nd.
Script compilation failed.


Loading map Joust - TheDeck-G1E.Map.Gbx (IqyqJerjPNb7nwMc6A_AZrpWDYj)...
...Load succeeds


Whats the correct syntax to comment out the matchresults logging??

Re: Server 'errors' I've only seen since v1.3

Posted: 18 Sep 2012, 18:22
by mattw_cstrfan
Comments are double slashes (//), not semicolons.

Code: Select all

    while (AllMatchResults.count > 5) {
        AllMatchResults.removekey(0);
//      log("AllMatchResults = "^AllMatchResults);
    }

Re: Server 'errors' I've only seen since v1.3

Posted: 18 Sep 2012, 18:39
by Guyver1
mattw_cstrfan wrote:Comments are double slashes (//), not semicolons.

Code: Select all

    while (AllMatchResults.count > 5) {
        AllMatchResults.removekey(0);
//      log("AllMatchResults = "^AllMatchResults);
    }

Cheers for that dude