]> granicus.if.org Git - icinga2/commitdiff
Remove --include-objects option from troubleshoot for now
authorJean-Marcel Flach <jean-marcel.flach@netways.de>
Wed, 25 Feb 2015 14:39:17 +0000 (15:39 +0100)
committerJean-Marcel Flach <jean-marcel.flach@netways.de>
Wed, 25 Feb 2015 14:40:24 +0000 (15:40 +0100)
lib/cli/troubleshootcommand.cpp

index 1afc3cffe59fd092735294fe5a863d105c3f0a2a..f3b318a6b2e7b9643eb46662abd137e450b04b24 100644 (file)
@@ -46,7 +46,7 @@ String TroubleshootCommand::GetDescription(void) const
 
 String TroubleshootCommand::GetShortDescription(void) const
 {
-       return "Collect information for troubleshooting";
+       return "collect information for troubleshooting";
 }
 
 class TroubleshootCommand::InfoLog
@@ -375,6 +375,7 @@ bool TroubleshootCommand::CheckConfig(void)
        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)
 {
@@ -404,7 +405,7 @@ void TroubleshootCommand::CheckObjectFile(const String& objectfile, InfoLog& log
                        continue;
 
                std::stringstream sStream;
-
+               
                ObjectListUtility::PrintObject(sStream, first, message, type_count, "", "");
 
                Dictionary::Ptr object = JsonDecode(message);
@@ -497,7 +498,7 @@ void TroubleshootCommand::InitParameters(boost::program_options::options_descrip
        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
                ;
 }