Skip to content

Commit 4eae25d

Browse files
committed
fix: Add correct logging to example scripts.
1 parent b575a38 commit 4eae25d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

example/script/attractors.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from biodivine_aeon import *
22
import sys
33

4-
import biodivine_aeon
5-
6-
biodivine_aeon.LOG_LEVEL = biodivine_aeon.LOG_NOTHING
4+
import logging
5+
logging.basicConfig(level=logging.INFO)
76

87
# This script computes the attractors of a single,
98
# fully specified Boolean network. This includes both fixed points

example/script/scc.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from biodivine_aeon import *
22
import sys
33

4-
import biodivine_aeon
5-
6-
biodivine_aeon.LOG_LEVEL = biodivine_aeon.LOG_NOTHING
4+
import logging
5+
logging.basicConfig(level=logging.INFO)
76

87
# This script computes the non-trivial SCCs of a single,
98
# fully specified Boolean network. This *does not* include fixed points,

example/script/stability_analysis.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
from biodivine_aeon import *
22
import sys
33

4+
import logging
5+
logging.basicConfig(level=logging.INFO)
6+
47
# This file provides functionality that is equivalent to the `stability_analysis` feature in the AEON
58
# online interface
69

0 commit comments

Comments
 (0)