And then a WITH?!? I'm telling you, this video is an emotional roller coaster!
@om3raltiparmak4 ай бұрын
Thank you for your education.
@marekjakimowicz4 ай бұрын
This very interesting. I currently using my own logging code. Maybe I want to switch to QuickLogger in next project. Thanks.
@testerrtestowwyyy39414 ай бұрын
the same!
@JanDoggen4 ай бұрын
Using QuickLogger here. It's easy to extend the logging, we added a new provider logging to TCP. BTW : Didn't know you could use the Format format.
@codegearguru4 ай бұрын
Glad you learnt something new!
@Putin-Huylo-Maloe4 ай бұрын
Thanks from Ukraine! 🎉
@JanDoggen4 ай бұрын
Alister, what makes those begin/end color matches?
@codegearguru4 ай бұрын
CnWizards. Http://cnpack.org
@DustenScheere4 ай бұрын
Is there any mechanism to hook into objects you've already written and get a log message for any of the methods called? Let's say I have TDocument object. I'd like the logger to fire anytime a method of TDocument was called without needing to go in and "dirty" up the code with .Log calls.
@codegearguru4 ай бұрын
Yes, kind of. If you're methods are virtual you can inject events into them (Aspect Oriented Programming - AOP). Although it probably wouldn't be a trivial exercise.