Skip to content

Commit 3b5c27a

Browse files
committed
Run jep test at INFO level, not DEBUG
The DEBUG level is too granular for normal use. In particular, the message "The JVM is already running" appears many times when running in debug mode. We could change that message to print only in JPYPE mode, but I think INFO is a better fit for CI generally anyway.
1 parent 5cfb904 commit 3b5c27a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fi
5757
echo "
5858
import logging, sys, pytest, scyjava
5959
scyjava._logger.addHandler(logging.StreamHandler(sys.stderr))
60-
scyjava._logger.setLevel(logging.DEBUG)
60+
scyjava._logger.setLevel(logging.INFO)
6161
scyjava.config.set_verbose(2)
6262
result = pytest.main($argString)
6363
if result:

0 commit comments

Comments
 (0)