~ubuntu-branches/ubuntu/utopic/nordugrid-arc/utopic

« back to all changes in this revision

Viewing changes to src/clients/echo/arcecho.cpp

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2014-05-01 20:51:02 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140501205102-icy9t3348uxobyx7
Tags: 4.1.0-1
* 4.1.0 Release
* Call dh_autoreconf to support ppc64le (Closes: #744639)

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
  // If debug is specified as argument, it should be set before loading the configuration.
67
67
  if (!debug.empty())
68
 
    Arc::Logger::getRootLogger().setThreshold(Arc::string_to_level(debug));
 
68
    Arc::Logger::getRootLogger().setThreshold(Arc::istring_to_level(debug));
69
69
 
70
70
  Arc::UserConfig usercfg(conffile);
71
71
  if (!usercfg) {
74
74
  }
75
75
 
76
76
  if (debug.empty() && !usercfg.Verbosity().empty())
77
 
    Arc::Logger::getRootLogger().setThreshold(Arc::string_to_level(usercfg.Verbosity()));
 
77
    Arc::Logger::getRootLogger().setThreshold(Arc::istring_to_level(usercfg.Verbosity()));
78
78
 
79
79
  if (timeout > 0) {
80
80
    usercfg.Timeout(timeout);