/// <summary> /// Allows us to configure the logging components - This is focused on a startup call within <see cref="StartLogging" />, however the library is set up to handle real-time updates if /// this method is called again. /// </summary> /// <param name="config">Configuration defining which log exporters will be created - If null, will create only a Console logger (aiming for "out of the box" readiness) public static void ConfigureLogging(LoggingConfiguration config = null) { logThread = new LoggerThread(config); }