Skip to content

Commit

Permalink
Add error message with bind and port on which is it running
Browse files Browse the repository at this point in the history
Closes: #253
  • Loading branch information
coolhacker committed Nov 14, 2019
1 parent 02ccb2a commit e3529c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rq_dashboard/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import sys

import click

from flask import Flask, Response, request

from . import default_settings
Expand Down Expand Up @@ -160,6 +159,7 @@ def run(
log.setLevel(logging.DEBUG)
else:
log.setLevel(logging.ERROR)
log.error(" * Running on {}:{}".format(bind, port))

app.run(host=bind, port=port, debug=debug)

Expand Down

0 comments on commit e3529c3

Please sign in to comment.