X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fprotector-plugin%2Fsliding_window.cc;fp=src%2Fprotector-plugin%2Fsliding_window.cc;h=f278be4914ca7a23bc5507091e1deeec5c549b40;hb=4e545a8b013e60f2ff59254cb3fe435012d8fe5a;hp=bdcf7368675b10619b89290c875a7eb6516034b9;hpb=82ba4b9999ca8e09461315a919b36a66641a6c7d;p=ric-app%2Fadmin.git diff --git a/src/protector-plugin/sliding_window.cc b/src/protector-plugin/sliding_window.cc index bdcf736..f278be4 100644 --- a/src/protector-plugin/sliding_window.cc +++ b/src/protector-plugin/sliding_window.cc @@ -95,7 +95,7 @@ bool sliding_window::update_window(unsigned int events){ bool sliding_window::resize_window(unsigned int window_size){ if (window_size < MIN_WINDOW_SIZE || window_size > MAX_WINDOW_SIZE){ std::stringstream ss; - ss << "Error ::" << __FILE__ << ","<< __LINE__ << " window size must be in [ " << MIN_WINDOW_SIZE << "," << MAX_WINDOW_SIZE << "]" << std::endl; + ss << "Error ::" << __FILE__ << ","<< __LINE__ << " Illegal window size ! window size must be in [ " << MIN_WINDOW_SIZE << "," << MAX_WINDOW_SIZE << "]" << std::endl; error_string = ss.str(); return false; }