@@ -93,7 +93,7 @@ class Observer : public swift::FrontendObserver {
9393 explicit Observer (const codeql::SwiftExtractorConfiguration& config) : state{config} {}
9494
9595 void parsedArgs (swift::CompilerInvocation& invocation) override {
96- LOG_DEBUG (" {}(... )" , __func__);
96+ LOG_DEBUG (" {}()" , __func__);
9797 auto & options = invocation.getFrontendOptions ();
9898 options.KeepASTContext = true ;
9999 lockOutputSwiftModuleTraps (state, options);
@@ -102,14 +102,14 @@ class Observer : public swift::FrontendObserver {
102102 }
103103
104104 void configuredCompiler (swift::CompilerInstance& instance) override {
105- LOG_DEBUG (" {}(... )" , __func__);
105+ LOG_DEBUG (" {}()" , __func__);
106106 // remove default consumers to avoid double messaging
107107 instance.getDiags ().takeConsumers ();
108108 instance.addDiagnosticConsumer (&diagConsumer);
109109 }
110110
111111 void performedCompilation (swift::CompilerInstance& compiler) override {
112- LOG_DEBUG (" {}(... )" , __func__);
112+ LOG_DEBUG (" {}()" , __func__);
113113 codeql::extractSwiftFiles (state, compiler);
114114 codeql::extractSwiftInvocation (state, compiler, invocationTrap);
115115 codeql::extractExtractLazyDeclarations (state, compiler);
0 commit comments