Skip to content

Commit 1cf8ddb

Browse files
debug: file handler;
1 parent 35d2bd7 commit 1cf8ddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# Setup logging
2929
LOGGER = logging.getLogger("docker-splunk")
3030
LOGGER.setLevel(logging.INFO)
31-
file_handler = logging.handlers.RotatingFileHandler(os.path.join(FILE_DIR, "..", "test-results", "docker_splunk_test_python{}.log".format(sys.version_info[0])), maxBytes=25000000)
31+
file_handler = logging.handlers.RotatingFileHandler("/builds/core-ee/docker-images/docker_splunk_tests.log", maxBytes=25000000)
3232
formatter = logging.Formatter('%(asctime)s %(levelname)s [%(name)s] [%(process)d] %(message)s')
3333
file_handler.setFormatter(formatter)
3434
LOGGER.addHandler(file_handler)

0 commit comments

Comments
 (0)