shared: drop some debug logs

This commit is contained in:
William Woodruff 2021-02-18 11:45:12 -05:00
parent 2607b2c9f0
commit 285070d09a
No known key found for this signature in database
GPG Key ID: 70F70A3979DDCED3
2 changed files with 0 additions and 2 deletions

View File

@ -119,7 +119,6 @@ func buildAndAttachBitcode(compilerExecName string, pr ParserResult, bcObjLinks
for i, srcFile := range pr.InputFiles { for i, srcFile := range pr.InputFiles {
objFile, bcFile := getArtifactNames(pr, i, hidden) objFile, bcFile := getArtifactNames(pr, i, hidden)
if hidden { if hidden {
LogDebug("not compile only; building object files")
buildObjectFile(compilerExecName, pr, srcFile, objFile) buildObjectFile(compilerExecName, pr, srcFile, objFile)
*newObjectFiles = append(*newObjectFiles, objFile) *newObjectFiles = append(*newObjectFiles, objFile)
} }

View File

@ -541,7 +541,6 @@ func (pr *ParserResult) verboseFlagCallback(_ string, _ []string) {
} }
func (pr *ParserResult) compileOnlyCallback(_ string, _ []string) { func (pr *ParserResult) compileOnlyCallback(_ string, _ []string) {
LogDebug("compileOnlyCallback")
pr.IsCompileOnly = true pr.IsCompileOnly = true
} }