~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to src/common/ceph_argparse.cc

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-08-27 08:23:21 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20120827082321-2cfej6ddvk63vsqq
Tags: upstream-0.48.1
ImportĀ upstreamĀ versionĀ 0.48.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
423
423
static void generic_usage(bool is_server)
424
424
{
425
425
  cout << "\
426
 
--conf/-c        Read configuration from the given configuration file\n\
427
 
-d               Run in foreground, log to stderr.\n\
428
 
-f               Run in foreground, log to usual location.\n\
429
 
--id/-i          set ID portion of my name\n\
430
 
--name/-n        set name (TYPE.ID)\n\
431
 
--version        show version and quit\n\
 
426
  --conf/-c        Read configuration from the given configuration file\n\
 
427
  -d               Run in foreground, log to stderr.\n\
 
428
  -f               Run in foreground, log to usual location.\n\
 
429
  --id/-i          set ID portion of my name\n\
 
430
  --name/-n        set name (TYPE.ID)\n\
 
431
  --version        show version and quit\n\
432
432
" << std::endl;
433
433
 
434
434
  if (is_server) {
435
 
    cout << "   --debug_ms N\n";
 
435
    cout << "  --debug_ms N\n";
436
436
    cout << "        set message debug level (e.g. 1)\n";
437
437
  }
438
438
}