We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python_db_logger
Add python_db_logger to Nacculator:
example.env
DB_*
.containers/mysql
docker-compose.yml
setup.py
install_requires=[ "python_db_logger @ git+ssh://[email protected]:/ctsit/python_db_logger.git" ]
configure_logging
DBLogger
print
db_logger.print_info()
db_logger.print_warn()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add
python_db_logger
to Nacculator:example.env
with the necessaryDB_*
environment variables.containers/mysql
) anddocker-compose.yml
from python_db_loggerpython_db_logger
as a dependency insetup.py
:configure_logging
function similar to https://github.com/ctsit/ufvivo-pubingest/blob/0779cf62b41245c479ebf49a9233d77bd644ab58/ufvivo/pubingest/__main__.py#L89-L111 that also creates an instance ofDBLogger
print
withdb_logger.print_info()
,db_logger.print_warn()
, etc.The text was updated successfully, but these errors were encountered: