mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
fix: [background update] fix logger
This commit is contained in:
parent
ff2b620647
commit
780b4f9f9c
1 changed files with 3 additions and 2 deletions
|
@ -19,13 +19,13 @@ sys.path.append(os.environ['AIL_BIN'])
|
|||
##################################
|
||||
# Import Project packages
|
||||
##################################
|
||||
from lib import ail_logger
|
||||
from lib import ail_updates
|
||||
|
||||
logging.config.dictConfig(ail_logger.get_config(name='updates'))
|
||||
def launch_background_upgrade(version):
|
||||
logger = logging.getLogger()
|
||||
update.set_error('Error Updater Script')
|
||||
print('launching background update', version)
|
||||
logger.warning(f'launching background update {version}')
|
||||
update = ail_updates.AILBackgroundUpdate(version)
|
||||
nb_done = update.get_nb_scripts_done()
|
||||
update.start()
|
||||
|
@ -61,6 +61,7 @@ def launch_background_upgrade(version):
|
|||
sys.exit(0)
|
||||
|
||||
update.end()
|
||||
logger.warning(f'ending background update {version}')
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue