-
Bug
-
Resolution: Fixed
-
P4
-
16
-
b27
-
generic
Unified Logging uses 512 bytes buffer on stack to use for print out message, above that will allocate heap for extra if the string is over 512 bytes. This make a circulation since we are in logging which itself allocate heap. The buffer size should be increased, and the log string should be truncated for printout if it is over the buffer size.