File tree 2 files changed +0
-13
lines changed
2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -450,10 +450,6 @@ public:
450
450
// / Also output to ostream. default is true
451
451
static void set_ostream_enabled (bool enabled) noexcept ;
452
452
453
- // / Also output to stdout. default is true
454
- [[deprecated(" Use set_ostream_enabled instead" )]]
455
- static void set_stdout_enabled (bool enabled) noexcept ;
456
-
457
453
// / Also output to syslog. default is false
458
454
// /
459
455
// / NOTE: syslog() can block, which will stall the reactor thread.
@@ -539,10 +535,6 @@ enum class logger_timestamp_style {
539
535
// / \brief Output stream to use for logging.
540
536
enum class logger_ostream_type {
541
537
none,
542
- #ifdef SEASTAR_LOGGER_TYPE_STDOUT
543
- stdout __attribute__ ((deprecated (" use cout instead" ))) = 1,
544
- stderr __attribute__ ((deprecated (" use cerr instead" ))) = 2,
545
- #endif
546
538
cout = 1 ,
547
539
cerr = 2 ,
548
540
};
Original file line number Diff line number Diff line change @@ -409,11 +409,6 @@ logger::set_ostream_enabled(bool enabled) noexcept {
409
409
_ostream.store (enabled, std::memory_order_relaxed);
410
410
}
411
411
412
- void
413
- logger::set_stdout_enabled (bool enabled) noexcept {
414
- _ostream.store (enabled, std::memory_order_relaxed);
415
- }
416
-
417
412
void
418
413
logger::set_syslog_enabled (bool enabled) noexcept {
419
414
_syslog.store (enabled, std::memory_order_relaxed);
You can’t perform that action at this time.
0 commit comments