Thanks Helen. I'd also like to a very specific attr setting overwrite the ones in the event handler.
For example, I have colors/styles setup in the event handler for Log.Event, but if I do a
Set attrBlock = Log.CreateNewAttributes
attrBlock.Bold = true
attrBlock.FontColor = vbWhite
attrBlock.BackColor = Builtin.clNavy
Log.Event("End Test: Test ABC", "", pmNormal, attrBlock)
The attrBlock style won't apply - it will still apply the one from the event handler. I get why that is, but it would be nice to have a forced style applied to a log line take precedence over the general event handler.