We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aae997 commit ab7c8d3Copy full SHA for ab7c8d3
scripts/qiita
@@ -15,7 +15,7 @@ from datetime import datetime, timedelta
15
from os.path import join, abspath, dirname, basename
16
from future.utils import viewitems
17
from glob import glob
18
-from time import sleep
+from time import sleep, ctime
19
from multiprocessing import active_children
20
21
import click
@@ -306,7 +306,7 @@ def start(port, master):
306
else:
307
raise
308
base_url = qiita_config.base_url
309
- click.echo("Qiita started on %s:%d " % (base_url, port))
+ click.echo("Qiita started on %s:%d @ %s" % (base_url, port, ctime()))
310
ioloop = tornado.ioloop.IOLoop.instance()
311
312
if master:
0 commit comments