Skip to content

Commit

Permalink
Split bucketfs package into Multiple Modules (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti authored Mar 14, 2024
1 parent a53a796 commit 08e4864
Show file tree
Hide file tree
Showing 9 changed files with 457 additions and 402 deletions.
1 change: 1 addition & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@
- Update abatilo/actions-poetry from `v2.1.4` to `v3.0.0`
- Update actions/setup-python from `v2` to `v5`
- Added build system section to project `pyproject.toml`
- Restructure internals of bucketfs package
4 changes: 3 additions & 1 deletion doc/examples/logger.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import logging

from exasol.bucketfs import Service

logging.basicConfig(level=logging.INFO)

# Advanced Logging
import logging

from exasol.bucketfs import Service

# Attention:
Expand All @@ -16,7 +18,7 @@
# Explicityly Configure the bucketfs logger if you need to.
#
# 1. Get a reference to the bucketfs logger
bucketfs_logger = logging.getLogger('exasol.bucketfs')
bucketfs_logger = logging.getLogger("exasol.bucketfs")

# 2. Configure the bucketfs logger as needed
# Note:
Expand Down
Loading

0 comments on commit 08e4864

Please sign in to comment.