log method
Implementation
@override
Future<void> log(String value, {String level = 'debug'}) async {
if (isReady) {
try {
await instance?.log(value);
} catch (e) {
printDebug(
'Observability service: $providerName failed to log info. error: $e, trace: ${StackTrace.current}',
);
}
}
}