Skip to content

Commit b32124d

Browse files
authored
Remove unnecessary diagnostics (#8401)
1 parent c8517d9 commit b32124d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/utils/CompilerLocationUtils.fs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,6 @@ module internal FSharpEnvironment =
292292
// We look in the directories stepping up from the location of the runtime assembly.
293293
let loadFromLocation designTimeAssemblyPath =
294294
try
295-
printfn "Using: %s" designTimeAssemblyPath
296295
Some (Assembly.UnsafeLoadFrom designTimeAssemblyPath)
297296
with e ->
298297
raiseError e
@@ -315,8 +314,6 @@ module internal FSharpEnvironment =
315314
let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
316315
let paths = searchParentDirChain (Some runTimeAssemblyPath) designTimeAssemblyName
317316
paths
318-
|> Seq.iter(function res -> printfn ">>>> %s" res)
319-
paths
320317
|> Seq.tryHead
321318
|> function
322319
| Some res -> loadFromLocation res
@@ -325,7 +322,6 @@ module internal FSharpEnvironment =
325322
let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
326323
loadFromLocation (Path.Combine (runTimeAssemblyPath, designTimeAssemblyName))
327324

328-
printfn "=============== S T A R T =========================================="
329325
if designTimeAssemblyName.EndsWith(".dll", StringComparison.OrdinalIgnoreCase) then
330326
loadFromParentDirRelativeToRuntimeAssemblyLocation designTimeAssemblyName
331327
else

0 commit comments

Comments
 (0)