info method
Implementation
Future<void> info(String message, {String? caller}) async
{
try
{
// print in debug mode only
if (kDebugMode) print('Info: $message${caller != null ? ' -> $caller' : ''}');
// add the entry
hive_log.Log e = hive_log.Log(type: "info", message: message, caller: caller);
_addEntry(e);
}
catch(ex)
{
print('Catch - Info: $message${caller != null ? ' -> $caller' : ''}');
}
}