Server ucc.log file...

Problems setting up a server and other server related things

Moderators: Jay2k1, DavidM, The_One

Locked
FL-
Member
Posts: 33
Joined: 26-08-2004 18:25

Server ucc.log file...

Post by FL- »

Tryng to clean up my server...

Couple of warnings that I'm trying to get rid of...

Code: Select all

Warning: Attempting to add duplicate property 'BoolProperty UnrealGame.TeamGame.bBalanceTeams' to PlayInfo from DB_DeathBall!
That warning comes up when the server is being initialized, right after "WebAdmin: Loading Game Types"

Code: Select all

Log: Client netspeed is 10000
UT2Vote: 15:35:36 - Player login request: ?Name=n00b?Class=Engine.Pawn?Character=dbplayer?team=255?Voice=XGame.RobotVoice?password=alliance
Warning: Failed to load 'NULL': Can't resolve package name
Warning: Failed to load 'Class None.': Can't resolve package name
ScriptLog: New Player n00b id=32af618f3ba1ef8264f8deefed08553c
ScriptLog: START MATCH
Not sure why those are coming up...

Code: Select all

Warning: DB_PawnRed DB-SmallCube.DB_PawnRed (Function deathball.DB_Pawn.PostBeginPlay:0075) Accessed None 'DBV'
Warning: DB_ReplayBombFlag DB-SmallCube.DB_ReplayBombFlag (Function deathball.DB_ReplayBombFlag.SetHolder:0085) Accessed None 'Stats'
Warning: DB_DeathBall DB-SmallCube.DB_DeathBall (Function deathball.DB_DeathBall.SetEndGameFocus:02B7) Accessed None 'P'
Just some accessed none's that required some code cleansing.

Code: Select all

Log: Octree Warning (RemoveActor): DB_ReplayBombFlag moved without proper hashing
Lots of those. Any comments?
User avatar
Imaginos
Posts: 885
Joined: 17-03-2003 18:06
Contact:

Post by Imaginos »

They are from the coding and it's nothing that can be cleaned up on the user side.
In the meantime you can prevent the logspam with an additional

Suppress=Warning

statement in your ut2004.ini
Locked