Declare LERROR deprecated and remove all usage in webrtc

Bug: webrtc:13362
Change-Id: I1c6c6eccd950d73be616b34f96db7832ff94377e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/238804
Commit-Queue: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#35416}
diff --git a/p2p/base/stun_request.cc b/p2p/base/stun_request.cc
index b271daa..09a7a83 100644
--- a/p2p/base/stun_request.cc
+++ b/p2p/base/stun_request.cc
@@ -147,9 +147,9 @@
   } else if (msg->type() == GetStunErrorResponseType(request->type())) {
     request->OnErrorResponse(msg);
   } else {
-    RTC_LOG(LERROR) << "Received response with wrong type: " << msg->type()
-                    << " (expecting "
-                    << GetStunSuccessResponseType(request->type()) << ")";
+    RTC_LOG(LS_ERROR) << "Received response with wrong type: " << msg->type()
+                      << " (expecting "
+                      << GetStunSuccessResponseType(request->type()) << ")";
     return false;
   }