Delete INFO/WARNING/LERROR log levels

These have been depreated since November 2021.

Bug: webrtc:13362
Change-Id: Ifc1b984ab54faefc974006f37f909e6927aed056
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/251760
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#36023}
This commit is contained in:
Harald Alvestrand 2022-02-15 13:17:37 +00:00 committed by WebRTC LUCI CQ
parent 88f3c830f6
commit 380d60c89a

View File

@ -88,11 +88,6 @@ enum LoggingSeverity {
LS_WARNING, LS_WARNING,
LS_ERROR, LS_ERROR,
LS_NONE, LS_NONE,
// Compatibility aliases, to be deleted.
// TODO(bugs.webrtc.org/13362): Remove usage and delete.
INFO [[deprecated("Use LS_INFO")]] = LS_INFO,
WARNING [[deprecated("Use LS_WARNING")]] = LS_WARNING,
LERROR [[deprecated("Use LS_ERROR")]] = LS_ERROR
}; };
// LogErrorContext assists in interpreting the meaning of an error value. // LogErrorContext assists in interpreting the meaning of an error value.