comparison libervia/backend/core/launcher.py @ 4081:84f6bee6440d

installation: moved from `setup.py` to `pyproject.toml`: - updated installation to use the now standard `pyproject.toml` instead of legacy `setup.py`. `setup.py` and other legacy files have been deleted. - removed outdated README4PACKAGERS - removed pylintrc which has not been correctly reviewed. Linter conf should go to `pyproject.toml` now. - [hatch](https://hatch.pypa.io) is now used as main building tool. However, thanks to the use of standards, other tools can be used too. - update .hgignore - several dependencies version bump, with code update to adapt to changes.
author Goffi <goffi@goffi.org>
date Tue, 06 Jun 2023 16:45:16 +0200
parents 47401850dec6
children 3dbaf179c50d
comparison
equal deleted inserted replaced
4080:0ea6b34f8f18 4081:84f6bee6440d
29 29
30 30
31 class LiberviaLogger(app.AppLogger): 31 class LiberviaLogger(app.AppLogger):
32 32
33 def start(self, application): 33 def start(self, application):
34 # logging is initialised by sat.core.log_config via the Twisted plugin, nothing 34 # logging is initialised by libervia.baceknd.core.log_config via the Twisted
35 # to do here 35 # plugin, nothing to do here
36 self._initialLog() 36 self._initialLog()
37 37
38 def stop(self): 38 def stop(self):
39 pass 39 pass
40 40