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

« back to all changes in this revision

Viewing changes to src/clients/compute/arccat.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:
47
47
 
48
48
  // If debug is specified as argument, it should be set before loading the configuration.
49
49
  if (!opt.debug.empty())
50
 
    Arc::Logger::getRootLogger().setThreshold(Arc::string_to_level(opt.debug));
 
50
    Arc::Logger::getRootLogger().setThreshold(Arc::istring_to_level(opt.debug));
 
51
 
 
52
  logger.msg(Arc::VERBOSE, "Running command: %s", opt.GetCommandWithArguments());
51
53
 
52
54
  if (opt.show_plugins) {
53
55
    std::list<std::string> types;
67
69
  }
68
70
 
69
71
  if (opt.debug.empty() && !usercfg.Verbosity().empty())
70
 
    Arc::Logger::getRootLogger().setThreshold(Arc::string_to_level(usercfg.Verbosity()));
 
72
    Arc::Logger::getRootLogger().setThreshold(Arc::istring_to_level(usercfg.Verbosity()));
71
73
 
72
74
  for (std::list<std::string>::const_iterator it = opt.jobidinfiles.begin(); it != opt.jobidinfiles.end(); it++) {
73
75
    if (!Arc::Job::ReadJobIDsFromFile(*it, jobidentifiers)) {