From 7661662e3edef3966dcb132ce802534c259d8c4e Mon Sep 17 00:00:00 2001 From: Robert Sachunsky Date: Fri, 11 Feb 2022 07:51:24 +0100 Subject: [PATCH] test: fix initLogging --- test/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/base.py b/test/base.py index 79b0d1a..36c192c 100644 --- a/test/base.py +++ b/test/base.py @@ -4,6 +4,9 @@ import os import sys from test.assets import assets +from ocrd_utils import initLogging PWD = os.path.dirname(os.path.realpath(__file__)) sys.path.append(PWD + '/../ocrd') + +initLogging()