aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/lock_eit.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/lock_eit.py b/examples/lock_eit.py
index 4f88a34..aca6762 100644
--- a/examples/lock_eit.py
+++ b/examples/lock_eit.py
@@ -21,10 +21,10 @@ logging.basicConfig(
)
-l = logging.getLogger("qolab.gui.web")
-l.setLevel(logging.INFO)
-l = logging.getLogger("qolab.tsdb")
-l.setLevel(logging.INFO)
+tmplog = logging.getLogger("qolab.gui.web")
+tmplog.setLevel(logging.INFO)
+tmplog = logging.getLogger("qolab.tsdb")
+tmplog.setLevel(logging.INFO)
logger = logging.getLogger("Magnetometer")
logger.setLevel(logging.INFO)