[hard coded flag for logging
martin.hofmann@uni-bamberg.de**20091007091127
 I have to test if setting a hard coded flag whether to log or not makes the compiler to optimize logging code away
] hunk ./src/Logging/Logger.hs 43
+_NOLOGGING = False
+
hunk ./src/Logging/Logger.hs 183
-                  handle $ LE  p l msg
---                        if _DEBUG then trace (show msg) else id          
+                  if _NOLOGGING then return () else handle $ LE  p l msg          