@@ -93,7 +93,7 @@ class Observer : public swift::FrontendObserver {
93
93
explicit Observer (const codeql::SwiftExtractorConfiguration& config) : state{config} {}
94
94
95
95
void parsedArgs (swift::CompilerInvocation& invocation) override {
96
- LOG_DEBUG (" {}(... )" , __func__);
96
+ LOG_DEBUG (" {}()" , __func__);
97
97
auto & options = invocation.getFrontendOptions ();
98
98
options.KeepASTContext = true ;
99
99
lockOutputSwiftModuleTraps (state, options);
@@ -102,14 +102,14 @@ class Observer : public swift::FrontendObserver {
102
102
}
103
103
104
104
void configuredCompiler (swift::CompilerInstance& instance) override {
105
- LOG_DEBUG (" {}(... )" , __func__);
105
+ LOG_DEBUG (" {}()" , __func__);
106
106
// remove default consumers to avoid double messaging
107
107
instance.getDiags ().takeConsumers ();
108
108
instance.addDiagnosticConsumer (&diagConsumer);
109
109
}
110
110
111
111
void performedCompilation (swift::CompilerInstance& compiler) override {
112
- LOG_DEBUG (" {}(... )" , __func__);
112
+ LOG_DEBUG (" {}()" , __func__);
113
113
codeql::extractSwiftFiles (state, compiler);
114
114
codeql::extractSwiftInvocation (state, compiler, invocationTrap);
115
115
codeql::extractExtractLazyDeclarations (state, compiler);
0 commit comments