Hercules Error Logs

pr3p

New member
Messages
288
Points
0
Location
United States
IRC Nickname
pr3p
Github
/pir8g33k
Emulator
Hi guyz how to set or enabled hercules compilation and error logs to check if the server encountered error (char,login and map crash) thanks and looking for your fast response, im using centos server thanks

 
Not really sure what you mean by error logs, if its regarding console output, you could always output the console to a file instead of stdout 

./map-server > log/map/map-server.txt
 
Every message the map server shows (Whether its someone connecting, a debug/warning/error or anything else) would be stored at log/map/map-server.txt
 
You could then 
Code:
grep -R "Error" log/map/map-server.txt
That'd show you all the words Error that can be found in log/map/map-server.txt
 
Back
Top