Skip to content

Commit

Permalink
mark stuff internal
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Mar 7, 2020
1 parent fd2c3ee commit 58dfa4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/Fake.BuildServer.GitLab/GitLab.fs
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ module GitLab =
member x.LogSectionName =
sprintf "%s_%s" (x.Type.Trim()) (x.Name.Trim())

type Writer = bool -> System.ConsoleColor -> bool -> string -> unit
type Ticks = unit -> int64
type ColorMapper = TraceData -> System.ConsoleColor
type internal Writer = bool -> System.ConsoleColor -> bool -> string -> unit
type internal Ticks = unit -> int64
type internal ColorMapper = TraceData -> System.ConsoleColor
/// Implements a TraceListener for TeamCity build servers.
/// ## Parameters
/// - `importantMessagesToStdErr` - Defines whether to trace important messages to StdErr.
Expand Down Expand Up @@ -215,7 +215,7 @@ module GitLab =
write false color true (sprintf "Build Number: %s" number)
| TraceData.TestStatus (test, status) ->
write false color true (sprintf "Test '%s' status: %A" test status)
let currentTicks () =
let internal currentTicks () =
System.DateTimeOffset.UtcNow.ToUnixTimeSeconds()
let defaultTraceListener =
GitLabTraceListener(ConsoleWriter.write, ConsoleWriter.colorMap, currentTicks) :> ITraceListener
Expand Down

0 comments on commit 58dfa4b

Please sign in to comment.