elastic / ml-cpp

Machine learning C++ code
Other
7 stars 62 forks source link

[ML] Remove inaccurate log message #2582

Closed davidkyle closed 1 year ago

davidkyle commented 1 year ago

2576 added an error message when a null value was is read in CCompressedLfuCache::lookup as the cache should not contain null values. This was based on a misreading of the code, a null value means the item was not found in the cache.

The curious thing is that the message was only logged once by my application when I would expect to see it every time CCompressedLfuCache::lookup was called, I'm assuming this is due to the log throttler removing exact duplicate messages.

davidkyle commented 1 year ago

buildkite build this