@@ -91,7 +91,7 @@ void ProjectBuildDatabase::initObjects(const nlohmann::json &compileCommandsJson
91
91
} else {
92
92
jsonArguments = std::vector<std::string>(compileCommand.at (" arguments" ));
93
93
}
94
- LOG_S (INFO ) << " Processing build command: " << StringUtils::joinWith (jsonArguments, " " );
94
+ LOG_S (MAX ) << " Processing build command: " << StringUtils::joinWith (jsonArguments, " " );
95
95
std::transform (jsonArguments.begin (), jsonArguments.end (), jsonArguments.begin (),
96
96
[&directory](const std::string &argument) {
97
97
return tryConvertOptionToPath (argument, directory);
@@ -188,13 +188,13 @@ void ProjectBuildDatabase::initInfo(const nlohmann::json &linkCommandsJson, bool
188
188
} else {
189
189
jsonArguments = std::vector<std::string>(linkCommand.at (" arguments" ));
190
190
}
191
- LOG_S (INFO ) << " Processing link command: " << StringUtils::joinWith (jsonArguments, " " );
191
+ LOG_S (MAX ) << " Processing link command: " << StringUtils::joinWith (jsonArguments, " " );
192
192
if (StringUtils::endsWith (jsonArguments[0 ], " ranlib" )) {
193
- LOG_S (INFO ) << " Skip ranlib command" ;
193
+ LOG_S (MAX ) << " Skip ranlib command" ;
194
194
continue ;
195
195
}
196
196
if (StringUtils::endsWith (jsonArguments[0 ], " cmake" )) {
197
- LOG_S (INFO ) << " Skip cmake command" ;
197
+ LOG_S (MAX ) << " Skip cmake command" ;
198
198
continue ;
199
199
}
200
200
std::transform (jsonArguments.begin (), jsonArguments.end (), jsonArguments.begin (),
0 commit comments