diff --git a/shared/compiler.go b/shared/compiler.go index a1da3a5..cd01162 100644 --- a/shared/compiler.go +++ b/shared/compiler.go @@ -119,7 +119,6 @@ func buildAndAttachBitcode(compilerExecName string, pr ParserResult, bcObjLinks for i, srcFile := range pr.InputFiles { objFile, bcFile := getArtifactNames(pr, i, hidden) if hidden { - LogDebug("not compile only; building object files") buildObjectFile(compilerExecName, pr, srcFile, objFile) *newObjectFiles = append(*newObjectFiles, objFile) } diff --git a/shared/parser.go b/shared/parser.go index 212e250..e1383a6 100644 --- a/shared/parser.go +++ b/shared/parser.go @@ -541,7 +541,6 @@ func (pr *ParserResult) verboseFlagCallback(_ string, _ []string) { } func (pr *ParserResult) compileOnlyCallback(_ string, _ []string) { - LogDebug("compileOnlyCallback") pr.IsCompileOnly = true }