You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PyPSATopo allows generating log messages while processing a network (by setting parameter quiet=False when using PyPSATopo API or passing parameter --no-quiet when using PyPSATopo through a CLI). Log messages are grouped in three types, namely:
INFO (represented as [INF] in the beginning of the message).
WARNING (represented as [WAR] in the beginning of the message).
ERROR (represented as [ERR] in the beginning of the message).
To improve log messages logic/filtering in PyPSATopo, the following should be implemented:
Rename parameter quiet as log in the API (this tells PyPSATopo to display any type log messages).
Rename parameter --no-quiet as --log in the CLI (this tells PyPSATopo to display any type log messages).
Add parameters log_info, log_warning and log_error in the API (this tells PyPSATopo to only display the type of log messages that the parameter corresponds to).
Add parameters --log-info, --log--warning and log--error in the API (this tells PyPSATopo to only display the type of log messages that the parameter corresponds to).
The text was updated successfully, but these errors were encountered:
PyPSATopo allows generating log messages while processing a network (by setting parameter
quiet=False
when using PyPSATopo API or passing parameter--no-quiet
when using PyPSATopo through a CLI). Log messages are grouped in three types, namely:[INF]
in the beginning of the message).[WAR]
in the beginning of the message).[ERR]
in the beginning of the message).To improve log messages logic/filtering in PyPSATopo, the following should be implemented:
quiet
aslog
in the API (this tells PyPSATopo to display any type log messages).--no-quiet
as--log
in the CLI (this tells PyPSATopo to display any type log messages).log_info
,log_warning
andlog_error
in the API (this tells PyPSATopo to only display the type of log messages that the parameter corresponds to).--log-info
,--log--warning
andlog--error
in the API (this tells PyPSATopo to only display the type of log messages that the parameter corresponds to).The text was updated successfully, but these errors were encountered: