Skip to content

Commit

Permalink
Remove logging config from files except main.
Browse files Browse the repository at this point in the history
  • Loading branch information
redur committed May 29, 2024
1 parent b38ab1b commit 3477db9
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/stratigraphy/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
x_overlap_significant_smallest,
)

logging.basicConfig(format="%(asctime)s %(levelname)-8s %(message)s", level=logging.INFO, datefmt="%Y-%m-%d %H:%M:%S")
logger = logging.getLogger(__name__)


Expand Down
1 change: 0 additions & 1 deletion src/stratigraphy/util/duplicate_detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from stratigraphy.util.plot_utils import convert_page_to_opencv_img

logger = logging.getLogger(__name__)
logging.basicConfig(format="%(asctime)s %(levelname)-8s %(message)s", level=logging.INFO, datefmt="%Y-%m-%d %H:%M:%S")


def remove_duplicate_layers(
Expand Down
1 change: 0 additions & 1 deletion src/stratigraphy/util/geometric_line_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from stratigraphy.util.dataclasses import Line, Point
from stratigraphy.util.linesquadtree import LinesQuadTree

logging.basicConfig(format="%(asctime)s %(levelname)-8s %(message)s", level=logging.INFO, datefmt="%Y-%m-%d %H:%M:%S")
logger = logging.getLogger(__name__)


Expand Down
1 change: 0 additions & 1 deletion src/stratigraphy/util/plot_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from stratigraphy.util.dataclasses import Line
from stratigraphy.util.textblock import TextBlock

logging.basicConfig(format="%(asctime)s %(levelname)-8s %(message)s", level=logging.INFO, datefmt="%Y-%m-%d %H:%M:%S")
logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 3477db9

Please sign in to comment.