commit d8c05035636364b929414da54b922604992cad8e
parent f73e139d8f3ae93ef44c44fa9a21a4217821afac
Author: Brian C. Lane <bcl@brianlane.com>
Date:   Sat, 27 Feb 2010 12:03:17 -0800
Output a startup string with the port number
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/server/hms/hms.py b/server/hms/hms.py
@@ -1298,6 +1298,9 @@ class MainHandler(BaseHandler):
 
 def main():
     tornado.options.parse_command_line()
+
+    print "Starting Home Media Server"
+    print "Listening on port %s" % (options.port)
     
     # Setup the database
     if not os.path.exists(options.database):