66 WARNING: BCP 177 violation. Detected non-functional IPv6 loopback.
67 WARNING: BCP 177 violation. IPv6 transport forced OFF by build parameters.
68 Processing Configuration File: ... (depth ...)
+69 WARNING: Unsupported or unexpected from-helper annotation with a name reserved for Squid use: ...advice: If this is a custom annotation, rename it to add a trailing underscore: ...
\endverbatim
*/
};
/// The maximum used DebugMessage::id plus 1. Increase as you add new IDs.
-constexpr DebugMessageId DebugMessageIdUpperBound = 69;
+constexpr DebugMessageId DebugMessageIdUpperBound = 70;
/// a collection of DebugMessage objects (with fast access by message IDs)
class DebugMessages
#include "squid.h"
#include "ConfigParser.h"
+#include "debug/Messages.h"
#include "debug/Stream.h"
#include "helper.h"
#include "helper/Reply.h"
if (std::find(recognized.begin(), recognized.end(), key) != recognized.end())
return; // a Squid-recognized key
- debugs(84, DBG_IMPORTANT, "WARNING: Unsupported or unexpected from-helper annotation with a name reserved for Squid use: " <<
+ debugs(84, Important(69), "WARNING: Unsupported or unexpected from-helper annotation with a name reserved for Squid use: " <<
key << '=' << value <<
Debug::Extra << "advice: If this is a custom annotation, rename it to add a trailing underscore: " <<
key << '_');