-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
data-store: log workflow events to info level
* To assist with debugging the UIS under normal operation bump the logging of workflow events (registered, connected, disconnected, etc events) from debug to info levels. * Centralised workflow event logging, included more argument info & gave all events a prefix to help us to `grep` them out when needed.
- Loading branch information
1 parent
38a3c24
commit 03a38db
Showing
3 changed files
with
73 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright (C) NIWA & British Crown (Met Office) & Contributors. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
def _repr(value): | ||
if isinstance(value, dict): | ||
return '<dict>' | ||
if isinstance(value, set): | ||
return '<set>' | ||
return repr(value) | ||
|
||
|
||
def fmt_call(name, args, kwargs): | ||
"""Format a Python function call. | ||
Examples: | ||
It formats calls at they would appear in Python code: | ||
>>> fmt_call('foo', (1,), {'x': True}) | ||
'foo(1, x=True)' | ||
It handles different data types: | ||
>>> fmt_call('foo', ('str', 42, True, None), {}) | ||
"foo('str', 42, True, None)" | ||
It puts in placeholders for dicts and sets (too long for log output): | ||
>>> fmt_call('foo', tuple(), {'a': {'x': 1}, 'b': {'y',}}) | ||
'foo(a=<dict>, b=<set>)' | ||
""" | ||
return f'{name}(' + ', '.join( | ||
[ | ||
_repr(arg) for arg in args | ||
] + [ | ||
f'{key}={_repr(value)}' | ||
for key, value in kwargs.items() | ||
] | ||
) + ')' |