mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Use log.critical instead of log.fatal (which does not exist).
Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
This commit is contained in:
parent
b7bc11deea
commit
a1acde1f02
@ -303,7 +303,7 @@ if __name__ == '__main__':
|
|||||||
log.error('Could not remove pid file: %s', e)
|
log.error('Could not remove pid file: %s', e)
|
||||||
atexit.register(removePidFile)
|
atexit.register(removePidFile)
|
||||||
except EnvironmentError, e:
|
except EnvironmentError, e:
|
||||||
log.fatal('Error opening/writing pid file %s: %s', pidFile, e)
|
log.critical('Error opening/writing pid file %s: %s', pidFile, e)
|
||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
|
|
||||||
conf.allowDefaultOwner = options.allowDefaultOwner
|
conf.allowDefaultOwner = options.allowDefaultOwner
|
||||||
|
Loading…
Reference in New Issue
Block a user