From b32124df9ebcae95b819b4428f6615ce759d7963 Mon Sep 17 00:00:00 2001 From: "Kevin Ransom (msft)" Date: Thu, 30 Jan 2020 10:16:22 -0800 Subject: [PATCH] Remove unnecessary diagnostics (#8401) --- src/utils/CompilerLocationUtils.fs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/utils/CompilerLocationUtils.fs b/src/utils/CompilerLocationUtils.fs index 923ab41843..20be5f7483 100644 --- a/src/utils/CompilerLocationUtils.fs +++ b/src/utils/CompilerLocationUtils.fs @@ -292,7 +292,6 @@ module internal FSharpEnvironment = // We look in the directories stepping up from the location of the runtime assembly. let loadFromLocation designTimeAssemblyPath = try - printfn "Using: %s" designTimeAssemblyPath Some (Assembly.UnsafeLoadFrom designTimeAssemblyPath) with e -> raiseError e @@ -315,8 +314,6 @@ module internal FSharpEnvironment = let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName let paths = searchParentDirChain (Some runTimeAssemblyPath) designTimeAssemblyName paths - |> Seq.iter(function res -> printfn ">>>> %s" res) - paths |> Seq.tryHead |> function | Some res -> loadFromLocation res @@ -325,7 +322,6 @@ module internal FSharpEnvironment = let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName loadFromLocation (Path.Combine (runTimeAssemblyPath, designTimeAssemblyName)) - printfn "=============== S T A R T ==========================================" if designTimeAssemblyName.EndsWith(".dll", StringComparison.OrdinalIgnoreCase) then loadFromParentDirRelativeToRuntimeAssemblyLocation designTimeAssemblyName else