I guess this is a very common practice.
Let’s say we are using many libraries and we want to manage all of them from ofLog. eg. changing log levels at once or getting different prefix for each library.
Is there an standard way of mapping/syncing logs? or is it that usually one makes use of every log system separately?
I understand this part. But i don’t know how to route all the messages from the library to ofLog. The libary is not writen by myself and it throws log messages from many different places in the code base… i can’t/want to change those… I thought there could be a magic way to route the messages to ofLog before the are thrown to the console… but maybe im asking for something that does not exist…