diff --git a/plugins/Unix/plugin.py b/plugins/Unix/plugin.py index b0c614a98..1f0f6bd82 100644 --- a/plugins/Unix/plugin.py +++ b/plugins/Unix/plugin.py @@ -395,6 +395,8 @@ class Unix(callbacks.Plugin): you don't run anything that will spamify your channel or that will bring your machine to its knees. """ + self.log.info('Unix: running command "%s" for %s/%s', text, msg.nick, + irc.network) args = shlex.split(text) try: with open(os.devnull) as null: @@ -425,6 +427,8 @@ class Unix(callbacks.Plugin): you don't run anything that will spamify your channel or that will bring your machine to its knees. """ + self.log.info('Unix: running command "%s" for %s/%s', text, msg.nick, + irc.network) try: with open(os.devnull) as null: inst = subprocess.Popen(text,