forked from goatshriek/stumpless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemerg.h
564 lines (549 loc) · 26.4 KB
/
emerg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
/* SPDX-License-Identifier: Apache-2.0 */
/*
* Copyright 2020-2023 Joel E. Anderson
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/** @file
* Macro functions that log messages and entries at the emergency level.
*
* These can be turned into no-ops at compile time by defining
* STUMPLESS_DISABLE_EMERG_LEVEL during build, or at least before inclusion of
* this header (or stumpless.h).
*/
#ifndef __STUMPLESS_LEVEL_EMERG_H
# define __STUMPLESS_LEVEL_EMERG_H
# include <stumpless/level/mask.h>
# ifndef STUMPLESS_DISABLE_EMERG_LEVEL
# include <stumpless/config.h>
# include <stumpless/log.h>
# include <stumpless/severity.h>
# include <stumpless/target.h>
# endif
/**
* Logs a message to the current target with emergency severity.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumpless_add_log with the provided message and calculated
* priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* This function will log the given message with a severity of
* STUMPLESS_SEVERITY_EMERG, and the facility defined by the
* STUMPLESS_DEFAULT_FACILITY. If you wish to specify a different priority, then
* you will need to use stumplog_em instead.
*
* The message must be a valid format specifier string provided along with the
* appropriate number of variable arguments afterwards. This means that it
* should not be a user-controlled value under any circumstances. If you need a
* safer alternative without the risks of format strings, use
* \c stump_em_str instead.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @param message The message to log, optionally containing any format
* specifiers valid in \c printf. This must be a valid UTF-8 string in shortest
* form.
*
* @param ... Substitutions for any format specifiers provided in message. The
* number of substitutions provided must exactly match the number of
* specifiers given.
*
* @return A non-negative value if no error is encountered. If an error is
* encountered, then a negative value is returned and an error code is set
* appropriately. If the function is disabled then the effective return value
* is zero, although a return value of zero does not guarantee that this
* function is disabled.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stump_em( ... ) ( 0 )
# else
# define stump_em( ... ) \
stumpless_add_log( stumpless_get_current_target( ), \
STUMPLESS_SEVERITY_EMERG | STUMPLESS_DEFAULT_FACILITY, \
__VA_ARGS__ )
# endif
/**
* Logs a message to the current target with emergency severity.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumpless_add_log with the provided message and calculated
* priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* This function will log the given message with a severity of
* STUMPLESS_SEVERITY_EMERG, and the facility defined by the
* STUMPLESS_DEFAULT_FACILITY. If you wish to specify a different priority, then
* you will need to use stumplog_em instead.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @since release v2.1.0.
*
* @param message The message to log. This must be a valid UTF-8 string in
* shortest form.
*
* @return A non-negative value if no error is encountered. If an error is
* encountered, then a negative value is returned and an error code is set
* appropriately. If the function is disabled then the effective return value
* is zero, although a return value of zero does not guarantee that this
* function is disabled.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stump_em_str( message ) ( 0 )
# else
# define stump_em_str( message ) \
stumpless_add_log_str( stumpless_get_current_target( ), \
STUMPLESS_SEVERITY_EMERG | STUMPLESS_DEFAULT_FACILITY, \
( message ) )
# endif
/**
* Adds an entry to a given target with emergency severity.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumplog with the provided message and calculated priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* This call does not override the severity of the entry itself. Rather, it is
* intended to allow logging calls to be removed at compile time if the severity
* is known ahead of time.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access.
*
* **Async Cancel Safety: AC-Unsafe lock**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked.
*
* @param target The target to send the entry to.
*
* @param entry The entry to send to the target.
*
* @return A non-negative value if no error is encountered. If an error is
* encountered, then a negative value is returned and an error code is set
* appropriately. If the function is disabled then the effective return value
* is zero, although a return value of zero does not guarantee that this
* function is disabled.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stump_em_entry( target, entry ) ( 0 )
# else
# define stump_em_entry( target, entry ) \
stumpless_add_entry( ( target ), ( entry ) )
# endif
/**
* Adds a message to a given target with the specified priority.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumplog with the provided message and calculated priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* The message must be a valid format specifier string provided along with the
* appropriate number of variable arguments afterwards. This means that it
* should not be a user-controlled value under any circumstances. If you need a
* safer alternative without the risks of format strings, use
* \c stump_em_log_str instead.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @param target The target to send the entry to.
*
* @param priority The priority of the message - this should be the bitwise or
* of a single STUMPLESS_SEVERITY and single STUMPLESS_FACILITY value.
*
* @param message The message to log, optionally containing any format
* specifiers valid in \c printf. This must be a valid UTF-8 string in shortest
* form.
*
* @param ... Substitutions for any format specifiers provided in message. The
* number of substitutions provided must exactly match the number of
* specifiers given.
*
* @return A non-negative value if no error is encountered. If an error is
* encountered, then a negative value is returned and an error code is set
* appropriately. If the function is disabled then the effective return value
* is zero, although a return value of zero does not guarantee that this
* function is disabled.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stump_em_log( target, priority, ... ) ( 0 )
# else
# define stump_em_log( target, priority, ... ) \
stumpless_add_log( ( target ), ( priority ), __VA_ARGS__ )
#endif
/**
* Adds a message to a given target with the specified priority.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumplog with the provided message and calculated priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @since release v2.1.0.
*
* @param target The target to send the entry to.
*
* @param priority The priority of the message - this should be the bitwise or
* of a single STUMPLESS_SEVERITY and single STUMPLESS_FACILITY value.
*
* @param message The message to log. This must be a valid UTF-8 string in
* shortest form.
*
* @return A non-negative value if no error is encountered. If an error is
* encountered, then a negative value is returned and an error code is set
* appropriately. If the function is disabled then the effective return value
* is zero, although a return value of zero does not guarantee that this
* function is disabled.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stump_em_log_str( target, priority, message ) ( 0 )
# else
# define stump_em_log_str( target, priority, message ) \
stumpless_add_log_str( ( target ), ( priority ), ( message ) )
#endif
/**
* Adds a message to a given target with emergency severity.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumpless_add_log with the provided message and calculated
* priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* This function will log the given message with a severity of
* STUMPLESS_SEVERITY_EMERG, and the facility defined by the
* STUMPLESS_DEFAULT_FACILITY. If you wish to specify a different priority, then
* you will need to use stump_em_log instead.
*
* The message must be a valid format specifier string provided along with the
* appropriate number of variable arguments afterwards. This means that it
* should not be a user-controlled value under any circumstances. If you need a
* safer alternative without the risks of format strings, use
* \c stump_em_message_str instead.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @param target The target to send the entry to.
*
* @param message The message to log, optionally containing any format
* specifiers valid in \c printf. This must be a valid UTF-8 string in shortest
* form.
*
* @param ... Substitutions for any format specifiers provided in message. The
* number of substitutions provided must exactly match the number of
* specifiers given.
*
* @return A non-negative value if no error is encountered. If an error is
* encountered, then a negative value is returned and an error code is set
* appropriately. If the function is disabled then the effective return value
* is zero, although a return value of zero does not guarantee that this
* function is disabled.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stump_em_message( target, ... ) ( 0 )
# else
# define stump_em_message( target, ... ) \
stumpless_add_log( ( target ), \
STUMPLESS_DEFAULT_FACILITY | STUMPLESS_SEVERITY_EMERG, \
__VA_ARGS__ )
# endif
/**
* Adds a message to a given target with emergency severity.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumpless_add_log with the provided message and calculated
* priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* This function will log the given message with a severity of
* STUMPLESS_SEVERITY_EMERG, and the facility defined by the
* STUMPLESS_DEFAULT_FACILITY. If you wish to specify a different priority, then
* you will need to use stump_em_log instead.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @since release v2.1.0.
*
* @param target The target to send the entry to.
*
* @param message The message to log. This must be a valid UTF-8 string in
* shortest form.
*
* @return A non-negative value if no error is encountered. If an error is
* encountered, then a negative value is returned and an error code is set
* appropriately. If the function is disabled then the effective return value
* is zero, although a return value of zero does not guarantee that this
* function is disabled.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stump_em_message_str( target, message ) ( 0 )
# else
# define stump_em_message_str( target, message ) \
stumpless_add_log_str( ( target ), \
STUMPLESS_DEFAULT_FACILITY | STUMPLESS_SEVERITY_EMERG, \
( message ) )
# endif
/**
* Adds a message to the current target with the specified priority.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumplog with the provided message and calculated priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* The message must be a valid format specifier string provided along with the
* appropriate number of variable arguments afterwards. This means that it
* should not be a user-controlled value under any circumstances. If you need a
* safer alternative without the risks of format strings, use
* \c stumplog_em_str instead.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @param priority The priority of the message - this should be the bitwise or
* of a single STUMPLESS_SEVERITY and single STUMPLESS_FACILITY value.
*
* @param message The message to log, optionally containing any format
* specifiers valid in \c printf. This must be a valid UTF-8 string in shortest
* form.
*
* @param ... Substitutions for any format specifiers provided in message. The
* number of substitutions provided must exactly match the number of
* specifiers given.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stumplog_em( priority, ... ) ( ( void ) 0 )
# else
# define stumplog_em( priority, ... ) stumplog( ( priority ), __VA_ARGS__ )
# endif
/**
* Adds a message to the current target with the specified priority.
*
* This function will be removed at compile time if STUMPLESS_DISABLE_EMERG_LEVEL
* has been defined during build. If it is disabled, then this function is
* removed at compile time and will have no effect. Otherwise, it is equivalent
* to a call to stumplog with the provided message and calculated priority.
*
* Note that if this function is disabled, then the arguments will not be
* evaluated, meaning that any side effects will not happen. Be sure that any
* side effects you rely on will not cause problems if they are left out during
* a build with emerg level calls disabled.
*
* **Thread Safety: MT-Safe env locale
* This function is thread safe. Different target types handle thread safety
* differently, as some require per-target locks and others can rely on system
* libraries to log safely, but all targets support thread safe logging in some
* manner. For target-specific information on how thread safety is supported and
* whether AS or AC safety can be assumed, refer to the documentation for the
* target's header file (in the `stumpless/target` include folder).
*
* **Async Signal Safety: AS-Unsafe lock heap**
* This function is not safe to call from signal handlers as some targets make
* use of non-reentrant locks to coordinate access. It also may make memory
* allocation calls to create internal cached structures, and memory allocation
* may not be signal safe.
*
* **Async Cancel Safety: AC-Unsafe lock heap**
* This function is not safe to call from threads that may be asynchronously
* cancelled, due to the use of locks in some targets that could be left locked
* and the potential for memory allocation.
*
* @since release v2.1.0.
*
* @param priority The priority of the message - this should be the bitwise or
* of a single STUMPLESS_SEVERITY and single STUMPLESS_FACILITY value.
*
* @param message The message to log. This must be a valid UTF-8 string in
* shortest form.
*/
# ifdef STUMPLESS_DISABLE_EMERG_LEVEL
# define stumplog_em_str( priority, message ) ( ( void ) 0 )
# else
# define stumplog_em_str( priority, message ) \
stumplog_str( ( priority ), ( message ) )
# endif
#endif /* __STUMPLESS_LEVEL_EMERG_H */