~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to scripts/usrmgt-server

  • Committer: mattgiuca
  • Date: 2008-06-13 10:53:55 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:764
usrmgt-server: Revert accidental change in previous commit: Logging level set
to DEBUG (now set back to INFO).

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
 
307
307
    pid = os.getpid()
308
308
 
309
 
    logging.basicConfig(filename="/var/log/usrmgt.log", level=logging.DEBUG)
 
309
    logging.basicConfig(filename="/var/log/usrmgt.log", level=logging.INFO)
310
310
    logging.info("Starting usrmgt server on port %d (pid = %d)" % (port, pid))
311
311
 
312
312
    common.chat.start_server(port, magic, True, dispatch, initializer)