@@ -91,7 +91,7 @@ void ProjectBuildDatabase::initObjects(const nlohmann::json &compileCommandsJson
9191 } else {
9292 jsonArguments = std::vector<std::string>(compileCommand.at (" arguments" ));
9393 }
94- LOG_S (INFO ) << " Processing build command: " << StringUtils::joinWith (jsonArguments, " " );
94+ LOG_S (MAX ) << " Processing build command: " << StringUtils::joinWith (jsonArguments, " " );
9595 std::transform (jsonArguments.begin (), jsonArguments.end (), jsonArguments.begin (),
9696 [&directory](const std::string &argument) {
9797 return tryConvertOptionToPath (argument, directory);
@@ -188,13 +188,13 @@ void ProjectBuildDatabase::initInfo(const nlohmann::json &linkCommandsJson, bool
188188 } else {
189189 jsonArguments = std::vector<std::string>(linkCommand.at (" arguments" ));
190190 }
191- LOG_S (INFO ) << " Processing link command: " << StringUtils::joinWith (jsonArguments, " " );
191+ LOG_S (MAX ) << " Processing link command: " << StringUtils::joinWith (jsonArguments, " " );
192192 if (StringUtils::endsWith (jsonArguments[0 ], " ranlib" )) {
193- LOG_S (INFO ) << " Skip ranlib command" ;
193+ LOG_S (MAX ) << " Skip ranlib command" ;
194194 continue ;
195195 }
196196 if (StringUtils::endsWith (jsonArguments[0 ], " cmake" )) {
197- LOG_S (INFO ) << " Skip cmake command" ;
197+ LOG_S (MAX ) << " Skip cmake command" ;
198198 continue ;
199199 }
200200 std::transform (jsonArguments.begin (), jsonArguments.end (), jsonArguments.begin (),
0 commit comments