Replies: 1 comment
-
|
Duplicate of #829 (which i moved from issues to discussion). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We use the macros
STORM_LOG_Xfor most of the output in the Storm library. There is alsoSTORM_PRINTandSTORM_PRINT_AND_LOGwhich always write to cout.In my view, all output in the Storm libraries should use
STORM_LOG_Xsuch that we can set the log level from the outside. In particular, it should be possible to use e.g. stormpy without seeing any Storm output. When usingSTORM_PRINTthis is not guaranteed because it always prints to cout. Therefore,STORM_PRINTshould in my view only be used for the storm-cli parts.Beta Was this translation helpful? Give feedback.
All reactions