@@ -83,44 +83,44 @@ def delegate_to_all_loggers(meth)
83
83
end
84
84
85
85
# @return [Integer] the logging severity threshold
86
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#level
86
+ # @see http://is.gd/Okuy5p
87
87
delegate_to_first_logger :level
88
88
89
89
# Sets the logging severity threshold.
90
90
#
91
91
# @param level [Integer] the logging severity threshold
92
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#level=
92
+ # @see http://is.gd/H1VBFH
93
93
delegate_to_all_loggers :level=
94
94
95
95
# @return [String] program name to include in log messages
96
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#progname
96
+ # @see http://is.gd/5uHGK0
97
97
delegate_to_first_logger :progname
98
98
99
99
# Sets the program name to include in log messages.
100
100
#
101
101
# @param progname [String] the program name to include in log messages
102
- # @http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#progname=
102
+ # @see http://is.gd/f2U5Xj
103
103
delegate_to_all_loggers :progname=
104
104
105
105
# @return [String] the date format being used
106
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-datetime_format
106
+ # @see http://is.gd/btmFWJ
107
107
delegate_to_first_logger :datetime_format
108
108
109
109
# Sets the date format being used.
110
110
#
111
111
# @param format [String] the date format
112
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-datetime_format-3D
112
+ # @see http://is.gd/M36ml8
113
113
delegate_to_all_loggers :datetime_format=
114
114
115
115
# Log a message if the given severity is high enough.
116
116
#
117
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-add
117
+ # @see http://is.gd/5opBW0
118
118
delegate_to_all_loggers :add
119
119
120
120
# Dump one or more messages to info.
121
121
#
122
122
# @param message [#to_s] the message to log
123
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-3C-3C
123
+ # @see http://is.gd/BCp5KV
124
124
delegate_to_all_loggers :<<
125
125
126
126
# Log a message with severity of banner (high level).
@@ -133,7 +133,7 @@ def delegate_to_all_loggers(meth)
133
133
# the logger is configured to show them.
134
134
# @return [nil,true] when the given severity is not high enough (for this
135
135
# particular logger), log no message, and return true
136
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-info
136
+ # @see http://is.gd/pYUCYU
137
137
delegate_to_all_loggers :banner
138
138
139
139
# Log a message with severity of debug.
@@ -146,12 +146,12 @@ def delegate_to_all_loggers(meth)
146
146
# the logger is configured to show them.
147
147
# @return [nil,true] when the given severity is not high enough (for this
148
148
# particular logger), log no message, and return true
149
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-debug
149
+ # @see http://is.gd/Re97Zp
150
150
delegate_to_all_loggers :debug
151
151
152
152
# @return [true,false] whether or not the current severity level
153
153
# allows for the printing of debug messages
154
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-debug-3F
154
+ # @see http://is.gd/Iq08xB
155
155
delegate_to_first_logger :debug?
156
156
157
157
# Log a message with severity of info.
@@ -164,12 +164,12 @@ def delegate_to_all_loggers(meth)
164
164
# the logger is configured to show them.
165
165
# @return [nil,true] when the given severity is not high enough (for this
166
166
# particular logger), log no message, and return true
167
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-info
167
+ # @see http://is.gd/pYUCYU
168
168
delegate_to_all_loggers :info
169
169
170
170
# @return [true,false] whether or not the current severity level
171
171
# allows for the printing of info messages
172
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-info-3F
172
+ # @see http://is.gd/lBtJkT
173
173
delegate_to_first_logger :info?
174
174
175
175
# Log a message with severity of error.
@@ -182,12 +182,12 @@ def delegate_to_all_loggers(meth)
182
182
# the logger is configured to show them.
183
183
# @return [nil,true] when the given severity is not high enough (for this
184
184
# particular logger), log no message, and return true
185
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-error
185
+ # @see http://is.gd/mLwYMl
186
186
delegate_to_all_loggers :error
187
187
188
188
# @return [true,false] whether or not the current severity level
189
189
# allows for the printing of error messages
190
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-error-3F
190
+ # @see http://is.gd/QY19JL
191
191
delegate_to_first_logger :error?
192
192
193
193
# Log a message with severity of warn.
@@ -200,12 +200,12 @@ def delegate_to_all_loggers(meth)
200
200
# the logger is configured to show them.
201
201
# @return [nil,true] when the given severity is not high enough (for this
202
202
# particular logger), log no message, and return true
203
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-warn
203
+ # @see http://is.gd/PX9AIS
204
204
delegate_to_all_loggers :warn
205
205
206
206
# @return [true,false] whether or not the current severity level
207
207
# allows for the printing of warn messages
208
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-warn-3F
208
+ # @see http://is.gd/Gdr4lD
209
209
delegate_to_first_logger :warn?
210
210
211
211
# Log a message with severity of fatal.
@@ -218,12 +218,12 @@ def delegate_to_all_loggers(meth)
218
218
# the logger is configured to show them.
219
219
# @return [nil,true] when the given severity is not high enough (for this
220
220
# particular logger), log no message, and return true
221
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-fatal
221
+ # @see http://is.gd/5ElFPK
222
222
delegate_to_all_loggers :fatal
223
223
224
224
# @return [true,false] whether or not the current severity level
225
225
# allows for the printing of fatal messages
226
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-fatal-3F
226
+ # @see http://is.gd/7PgwRl
227
227
delegate_to_first_logger :fatal?
228
228
229
229
# Log a message with severity of unknown.
@@ -236,12 +236,12 @@ def delegate_to_all_loggers(meth)
236
236
# the logger is configured to show them.
237
237
# @return [nil,true] when the given severity is not high enough (for this
238
238
# particular logger), log no message, and return true
239
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-unknown
239
+ # @see http://is.gd/Y4hqpf
240
240
delegate_to_all_loggers :unknown
241
241
242
242
# Close the logging devices.
243
243
#
244
- # @see http://www.ruby-doc.org/stdlib-2.1.2/libdoc/logger/rdoc/Logger.html#method-i-close
244
+ # @see http://is.gd/b13cVn
245
245
delegate_to_all_loggers :close
246
246
247
247
private
0 commit comments