Logging Array

Can I send a array of byte to the logging output and if yes, how?

Hi,


Logging an array can be done with the following code, and by adding the RTTI unit to the uses list:

const
  b: TBytes = [0, 1, 2, 3, 4, 5];
begin
  TMSLogger.Info(TValue.From(b));
end;