We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50f14d commit 6ea728cCopy full SHA for 6ea728c
src/fsharp.fs
@@ -50,6 +50,7 @@ let private doActivate (context: ExtensionContext) : JS.Promise<Api> =
50
let tryActivate label activationFn =
51
fun ctx ->
52
try
53
+ logger.Debug $"Activating feature '{label}'"
54
activationFn ctx
55
with ex ->
56
logger.Error $"Error while activating feature '{label}': {ex}"
@@ -60,7 +61,7 @@ let private doActivate (context: ExtensionContext) : JS.Promise<Api> =
60
61
|> Promise.onSuccess (fun _ ->
62
let progressOpts = createEmpty<ProgressOptions>
63
progressOpts.location <- U2.Case1 ProgressLocation.Window
- logger.Debug "Activating features"
64
+ logger.Debug "Activating features..."
65
66
window.withProgress (
67
progressOpts,
0 commit comments