Commit b77c947d authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Optical Controller:

- Enabled loggers
parent 883734fb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -18,7 +18,9 @@ from opticalcontroller.tools import *
from opticalcontroller.variables import *


logging.basicConfig(level=logging.DEBUG)
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.DEBUG)

def print(*args) -> None:
    LOGGER.info(' '.join([str(a) for a in args]))