Arduino-Log
Arduino-Log copied to clipboard
Added an option to not automatically instantiate a Log object.
In some cases you do not want the Log object to be instantiated automatically by the library. Reasons could be that you want to control the heap memory segment type that gets allocated for the log object, or that you want to inherit the log base to another derived class. This commit adds a flag "DO_NOT_INSTANTIATE" that if set omits the automatic instantiation. The change is backwards compatible.