String TroubleshootCommand::GetShortDescription(void) const
{
- return "Collect information for troubleshooting";
+ return "collect information for troubleshooting";
}
class TroubleshootCommand::InfoLog
return DaemonUtility::ValidateConfigFiles(configs, Application::GetObjectsPath());
}
+//print is supposed allow the user to print the object file
void TroubleshootCommand::CheckObjectFile(const String& objectfile, InfoLog& log, const bool print,
Dictionary::Ptr& logs, std::set<String>& configs)
{
continue;
std::stringstream sStream;
-
+
ObjectListUtility::PrintObject(sStream, first, message, type_count, "", "");
Dictionary::Ptr object = JsonDecode(message);
visibleDesc.add_options()
("console,c", "print to console instead of file")
("output,o", boost::program_options::value<std::string>(), "path to output file")
- ("include-objects", "Print the whole objectfile (like `object list`)")
+// ("include-objects", "Print the whole objectfile (like `object list`)") TODO
;
}