From eda175374083731a73f86a5df7858ea764f7f2a7 Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Wed, 25 Apr 2007 15:17:08 +0000 Subject: [PATCH] Move the server log to a 'logs' directory so as not to add even more clutter to server root. --- startup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/startup.sh b/startup.sh index ac57f1c6c5..8be97dbd1b 100755 --- a/startup.sh +++ b/startup.sh @@ -8,10 +8,10 @@ export DJANGO_SETTINGS_MODULE="settings" PYTHON_BIN="python2.5" ## The name of your logfile. -LOGNAME="evennia.log" +LOGNAME="logs/evennia.log" ## Where to put the last log file from the game's last running ## on next startup. -LOGNAME_OLD="evennia.log.old" +LOGNAME_OLD="logs/evennia.log.old" mv $LOGNAME $LOGNAME_OLD ## There are several different ways you can run the server, read the