diff options
author | mathieui <mathieui@mathieui.net> | 2020-01-02 00:15:49 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2020-01-02 00:15:49 +0100 |
commit | 30a7ac052a6cf6fec46f96e48c17c51246923a1d (patch) | |
tree | b9f3fb19b5848bf26a918c84d02afa2047e08933 | |
parent | e6d2347d9368d0e504e447a09b31f90cf16e9d2a (diff) | |
parent | 1184e9c60018e80a5806ebe5fbb98735be037b52 (diff) | |
download | poezio-30a7ac052a6cf6fec46f96e48c17c51246923a1d.tar.gz poezio-30a7ac052a6cf6fec46f96e48c17c51246923a1d.tar.bz2 poezio-30a7ac052a6cf6fec46f96e48c17c51246923a1d.tar.xz poezio-30a7ac052a6cf6fec46f96e48c17c51246923a1d.zip |
Merge branch 'rm-foo-logging' into 'master'
BasePlugin: Remove debug logging
See merge request poezio/poezio!55
-rw-r--r-- | poezio/plugin.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/poezio/plugin.py b/poezio/plugin.py index 94cb330f..61e0ea87 100644 --- a/poezio/plugin.py +++ b/poezio/plugin.py @@ -91,7 +91,6 @@ class SafetyMetaclass(type): async def async_helper(*args, **kwargs): passthrough = kwargs.pop('passthrough', False) try: - log.debug('FOO: %r, %r', args, kwargs) return await f(*args, **kwargs) except: if passthrough: |