• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

RevScripts Putty TFS

rexgandi

Member
Joined
Oct 22, 2011
Messages
189
Reaction score
9
Hello,
I have a question.
How I can wiev all changes in my TFS ? (when i do screen and on my server i see only maybe 10 changes)
[ How i can see all changes : etc: 14:10 start to 19:10 global save)

I see only 10 maybe lines.
 
Hello,
I have a question.
How I can wiev all changes in my TFS ? (when i do screen and on my server i see only maybe 10 changes)
[ How i can see all changes : etc: 14:10 start to 19:10 global save)

I see only 10 maybe lines.
'screen' limits number of lines stored. There are 2 ways:
1) run without screen - only for development, if you close Putty server may go offline (or it stays online, but you got no access to console anymore)
2) run server on screen, but save console output to file:
Code:
./tfs | tee -a console.log
than it will put all console messages to file console.log
 
'screen' limits number of lines stored. There are 2 ways:
1) run without screen - only for development, if you close Putty server may go offline (or it stays online, but you got no access to console anymore)
2) run server on screen, but save console output to file:
Code:
./tfs | tee -a console.log
than it will put all console messages to file console.log

Thanks Gesior! Tell me only - i must create console.log (in datapack/logs) ?
 
Back
Top