Skip to content

Commit

Permalink
Reflecting newer package version in the code (more overloads available)
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Gro committed Oct 11, 2022
1 parent 0c95dc9 commit fb61e37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Compiler/Facilities/Activity.fs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module Activity =
let private activitySourceName = "fsc"
let private activitySource = new ActivitySource(activitySourceName)

let start name (tags: (string * string) seq) : IDisposable =
let start (name:string) (tags: (string * string) seq) : IDisposable =
let activity = activitySource.StartActivity(name)

match activity with
Expand All @@ -23,4 +23,4 @@ module Activity =

activity

let startNoTags name : IDisposable = activitySource.StartActivity(name)
let startNoTags (name:string) : IDisposable = activitySource.StartActivity(name)

0 comments on commit fb61e37

Please sign in to comment.