mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-14 01:02:59 -07:00
Log folder/file location on startup
This commit is contained in:
parent
878c48b491
commit
f0e2355231
1 changed files with 9 additions and 0 deletions
|
@ -167,6 +167,15 @@ def initialize(config_file):
|
||||||
logger.info(u"Python {}".format(
|
logger.info(u"Python {}".format(
|
||||||
sys.version
|
sys.version
|
||||||
))
|
))
|
||||||
|
logger.info(u"Program Dir: {}".format(
|
||||||
|
PROG_DIR
|
||||||
|
))
|
||||||
|
logger.info(u"Config File: {}".format(
|
||||||
|
CONFIG_FILE
|
||||||
|
))
|
||||||
|
logger.info(u"Database File: {}".format(
|
||||||
|
DB_FILE
|
||||||
|
))
|
||||||
|
|
||||||
if not CONFIG.BACKUP_DIR:
|
if not CONFIG.BACKUP_DIR:
|
||||||
CONFIG.BACKUP_DIR = os.path.join(DATA_DIR, 'backups')
|
CONFIG.BACKUP_DIR = os.path.join(DATA_DIR, 'backups')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue