mirror of https://github.com/m-labs/artiq.git
master: inform when running
This commit is contained in:
parent
6973a9471b
commit
0edde9f4d3
|
@ -4,6 +4,7 @@ import asyncio
|
||||||
import argparse
|
import argparse
|
||||||
import atexit
|
import atexit
|
||||||
import os
|
import os
|
||||||
|
import logging
|
||||||
|
|
||||||
from artiq.tools import *
|
from artiq.tools import *
|
||||||
from artiq.protocols.pc_rpc import Server as RPCServer
|
from artiq.protocols.pc_rpc import Server as RPCServer
|
||||||
|
@ -13,7 +14,10 @@ from artiq.master.log import log_args, init_log
|
||||||
from artiq.master.databases import DeviceDB, DatasetDB
|
from artiq.master.databases import DeviceDB, DatasetDB
|
||||||
from artiq.master.scheduler import Scheduler
|
from artiq.master.scheduler import Scheduler
|
||||||
from artiq.master.worker_db import RIDCounter
|
from artiq.master.worker_db import RIDCounter
|
||||||
from artiq.master.experiments import FilesystemBackend, GitBackend, ExperimentDB
|
from artiq.master.experiments import (FilesystemBackend, GitBackend,
|
||||||
|
ExperimentDB)
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
def get_argparser():
|
def get_argparser():
|
||||||
|
@ -111,6 +115,7 @@ def main():
|
||||||
bind, args.port_logging))
|
bind, args.port_logging))
|
||||||
atexit_register_coroutine(server_logging.stop)
|
atexit_register_coroutine(server_logging.stop)
|
||||||
|
|
||||||
|
loop.call_soon(logger.info, "running, bound to %s", bind)
|
||||||
loop.run_forever()
|
loop.run_forever()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in New Issue