mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
12 lines
191 B
Dart
12 lines
191 B
Dart
/// Log utilities
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
void logError(dynamic e, StackTrace s) {
|
|
if (e is Exception) {
|
|
print("Exception: $e\n$s");
|
|
} else {
|
|
print("Error: $e\n$s");
|
|
}
|
|
}
|