mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 03:02:52 +01:00
Use log.critical instead of log.fatal (which does not exist).
This commit is contained in:
parent
33debcd565
commit
6b0e5303b4
@ -301,7 +301,7 @@ if __name__ == '__main__':
|
||||
log.error('Could not remove pid file: %s', e)
|
||||
atexit.register(removePidFile)
|
||||
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)
|
||||
|
||||
conf.allowDefaultOwner = options.allowDefaultOwner
|
||||
|
Loading…
Reference in New Issue
Block a user