confused on comment

In the runner.py I see this

def remote_log(self, conn, msg):
    ''' this is the function we use to log things '''
    stdin, stdout, stderr = conn.exec_command('/usr/bin/logger -t
                             ansible -p auth.info %r' % msg)
    # TODO: doesn't actually call logger on the remote box, should
though
    # TODO: maybe make that optional

I don't understand the first TODO - it does call it on the remote
machine.

on my test box I see:

f16-1 systemd-logind[734]: New session 272 of user root.
f16-1 ansible: command: mktemp /tmp/ansible_command.XXXXXX
f16-1 ansible: command: chmod +x /tmp/ansible_command.UelVhB
f16-1 ansible: command: /tmp/ansible_command.UelVhB sleep 40

So... What am I missing here?

-sv

I was skimming last night, comment is safe to remove, my fault