aboutsummaryrefslogtreecommitdiff
path: root/start.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-26 11:09:43 +0000
committerGravatar jesopo2018-11-26 11:09:43 +0000
commit8cd069d37d9e4b523e4b0df16a7e9fbc875c4112 (patch)
tree7a1d2b596c87a1e6cf76cbd2a40f507f145ae49c /start.py
parentalso support zero-padded color codes (diff)
signature
'bot.log' -> 'trace.log' and add a 'warn.log' log file that only catches
warn-and-worse
Diffstat (limited to 'start.py')
-rwxr-xr-xstart.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/start.py b/start.py
index 56057290..fc83eb9b 100755
--- a/start.py
+++ b/start.py
@@ -17,9 +17,9 @@ arg_parser.add_argument("--database", "-d",
help="Location of the sqlite3 database file",
default=os.path.join(directory, "databases", "bot.db"))
-arg_parser.add_argument("--log", "-l",
- help="Location of the main log file",
- default=os.path.join(directory, "logs", "bot.log"))
+arg_parser.add_argument("--log-dir", "-l",
+ help="Location of the log directory",
+ default=os.path.join(directory, "logs"))
arg_parser.add_argument("--add-server", "-a",
help="Add a new server", action="store_true")