artiq_master: directly log, explicit imports

pull/319/head
Robert Jördens 2016-02-18 15:35:02 +01:00
parent 1891725e12
commit 6830703ec6
1 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,8 @@ import atexit
import os
import logging
from artiq.tools import *
from artiq.tools import (simple_network_args, atexit_register_coroutine,
bind_address_from_args)
from artiq.protocols.pc_rpc import Server as RPCServer
from artiq.protocols.sync_struct import Publisher
from artiq.protocols.logging import Server as LoggingServer
@ -115,7 +116,7 @@ def main():
bind, args.port_logging))
atexit_register_coroutine(server_logging.stop)
loop.call_soon(logger.info, "running, bound to %s", bind)
logger.info("running, bound to %s", bind)
loop.run_forever()
if __name__ == "__main__":