Hi Vince,
Yes, to have color and font style attributes defined in one place, you can set them from within the
OnLog* event handlers, like this:
function GeneralEvents_OnLogError(Sender, LogParams)
{
LogParams.Color = clRed;
LogParams.FontStyle = 1; // bold
}
(Tip: You can reuse the same event handler for events that have the same parameters, e.g. OnLogMesage, OnLogEvent, OnLogCreateNode etc.)
We also have a feature request to make it possible to globally set up default log style attributes, and I've increased its rating based on your post.