From 482b80aa8229de892ac80c4c4ab5b233112efc7b Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Fri, 17 May 2019 22:10:51 -0700 Subject: [PATCH] Print out the location of the log file --- openlp/plugins/presentations/lib/libreofficeserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/presentations/lib/libreofficeserver.py b/openlp/plugins/presentations/lib/libreofficeserver.py index c54500e01..04902a588 100644 --- a/openlp/plugins/presentations/lib/libreofficeserver.py +++ b/openlp/plugins/presentations/lib/libreofficeserver.py @@ -30,9 +30,9 @@ import time if sys.platform.startswith('darwin'): - print('Setting up log file') # Only make the log file on OS X when running as a server logfile = os.path.join(str(os.getenv('HOME')), 'Library', 'Application Support', 'openlp', 'libreofficeserver.log') + print('Setting up log file: {logfile}'.format(logfile=logfile)) logging.basicConfig(filename=logfile, level=logging.INFO)