From b25f240e4e4b2a48c0b71772dd6cb4d5991b1502 Mon Sep 17 00:00:00 2001 From: Jonny007-MKD Date: Mon, 2 Mar 2015 17:59:26 +0100 Subject: [PATCH] Moved logLevel before addLabel --- config | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config b/config index 9a676c9..92ec2f0 100644 --- a/config +++ b/config @@ -13,6 +13,11 @@ function funcConfigPre { # These values are set at the beginning of the script kodiUrl="user:password@localhost:8080" # Specify user, password and port for Kodi JSON API (HTTP interface) + logFile="/home/deluged/otrDecodeAll.log" # path to the log file + # log levels: 0=off; 1=error; 2=warn; 3=info; 4 debug; 5 verbose debug + logLevel=2 # level, which messages shall be written into the log. + echoLevel=5 # level, which messages shall be written to stdout. + torrentDb="/home/deluged/torrents.db" # File with file names and labels (see at github: OTR-TorrentDb) (optional) # Add label to directory mapping. (optional) # 1st arg: Label @@ -23,11 +28,6 @@ function funcConfigPre { # These values are set at the beginning of the script addLabel "docu" "Dokumentationen" addLabel "tvserie" "Serien" true - logFile="/home/deluged/otrDecodeAll.log" # path to the log file - # log levels: 0=off; 1=error; 2=warn; 3=info; 4 debug; 5 verbose debug - logLevel=2 # level, which messages shall be written into the log. - echoLevel=5 # level, which messages shall be written to stdout. - umask 0002 # Set permissions 775/664 per default }