We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c082a commit a2f3c03Copy full SHA for a2f3c03
DDG4/python/DDSim/bin/ddsim.py
@@ -9,12 +9,13 @@
9
"""
10
from __future__ import absolute_import, unicode_literals
11
import logging
12
+import sys
13
14
from DDSim.DD4hepSimulation import DD4hepSimulation
15
16
17
if __name__ == "__main__":
- logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.INFO)
18
+ logging.basicConfig(format='%(name)-16s %(levelname)s %(message)s', level=logging.INFO, stream=sys.stdout)
19
logger = logging.getLogger('DDSim')
20
21
RUNNER = DD4hepSimulation()
0 commit comments