This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 8.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/8.1.x by this push:
     new 44830f2  Turn this Debug back into an Error
44830f2 is described below

commit 44830f2e8da53007da9dcbf1aac92f4e049aa045
Author: Leif Hedstrom <[email protected]>
AuthorDate: Fri Nov 9 16:05:42 2018 -0700

    Turn this Debug back into an Error
    
    (cherry picked from commit 9db7acfe0996cb86a93d4b32ac2cbc5215b92af4)
---
 plugins/header_rewrite/factory.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/header_rewrite/factory.cc 
b/plugins/header_rewrite/factory.cc
index 41e29fe..028fc62 100644
--- a/plugins/header_rewrite/factory.cc
+++ b/plugins/header_rewrite/factory.cc
@@ -144,7 +144,7 @@ condition_factory(const std::string &cond)
   } else if (c_name == "INBOUND") {
     c = new ConditionInbound();
   } else {
-    TSDebug(PLUGIN_NAME, "Unknown condition: %s", c_name.c_str());
+    TSError("[%s] Unknown condition %s", PLUGIN_NAME, c_name.c_str());
     return nullptr;
   }
 

Reply via email to