Skip to content

Commit 6669bdf

Browse files
natesgweissi
authored andcommitted
Remove level parameter from log helpers (#91)
1 parent 6171b44 commit 6669bdf

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Sources/Logging/Logging.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ extension Logger {
105105
/// otherwise nothing will happen.
106106
///
107107
/// - parameters:
108-
/// - level: The log level to log `message` at. For the available log levels, see `Logger.Level`.
109108
/// - message: The message to be logged. `message` can be used with any string interpolation literal.
110109
/// - metadata: One-off metadata to attach to this log message
111110
/// - file: The file this log message originates from (there's usually no need to pass it explicitly as it
@@ -127,7 +126,6 @@ extension Logger {
127126
/// otherwise nothing will happen.
128127
///
129128
/// - parameters:
130-
/// - level: The log level to log `message` at. For the available log levels, see `Logger.Level`.
131129
/// - message: The message to be logged. `message` can be used with any string interpolation literal.
132130
/// - metadata: One-off metadata to attach to this log message
133131
/// - file: The file this log message originates from (there's usually no need to pass it explicitly as it
@@ -149,7 +147,6 @@ extension Logger {
149147
/// otherwise nothing will happen.
150148
///
151149
/// - parameters:
152-
/// - level: The log level to log `message` at. For the available log levels, see `Logger.Level`.
153150
/// - message: The message to be logged. `message` can be used with any string interpolation literal.
154151
/// - metadata: One-off metadata to attach to this log message
155152
/// - file: The file this log message originates from (there's usually no need to pass it explicitly as it
@@ -171,7 +168,6 @@ extension Logger {
171168
/// otherwise nothing will happen.
172169
///
173170
/// - parameters:
174-
/// - level: The log level to log `message` at. For the available log levels, see `Logger.Level`.
175171
/// - message: The message to be logged. `message` can be used with any string interpolation literal.
176172
/// - metadata: One-off metadata to attach to this log message
177173
/// - file: The file this log message originates from (there's usually no need to pass it explicitly as it
@@ -193,7 +189,6 @@ extension Logger {
193189
/// otherwise nothing will happen.
194190
///
195191
/// - parameters:
196-
/// - level: The log level to log `message` at. For the available log levels, see `Logger.Level`.
197192
/// - message: The message to be logged. `message` can be used with any string interpolation literal.
198193
/// - metadata: One-off metadata to attach to this log message
199194
/// - file: The file this log message originates from (there's usually no need to pass it explicitly as it
@@ -215,7 +210,6 @@ extension Logger {
215210
/// otherwise nothing will happen.
216211
///
217212
/// - parameters:
218-
/// - level: The log level to log `message` at. For the available log levels, see `Logger.Level`.
219213
/// - message: The message to be logged. `message` can be used with any string interpolation literal.
220214
/// - metadata: One-off metadata to attach to this log message
221215
/// - file: The file this log message originates from (there's usually no need to pass it explicitly as it
@@ -236,7 +230,6 @@ extension Logger {
236230
/// `.critical` messages will always be logged.
237231
///
238232
/// - parameters:
239-
/// - level: The log level to log `message` at. For the available log levels, see `Logger.Level`.
240233
/// - message: The message to be logged. `message` can be used with any string interpolation literal.
241234
/// - metadata: One-off metadata to attach to this log message
242235
/// - file: The file this log message originates from (there's usually no need to pass it explicitly as it

0 commit comments

Comments
 (0)