Skip to content

Commit

Permalink
fix(logging): added verbose logging to platform failure
Browse files Browse the repository at this point in the history
  • Loading branch information
RatakondalaArun committed Jul 10, 2022
1 parent bae9be2 commit a769629
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/abs/icon_generator.dart
Expand Up @@ -70,8 +70,11 @@ void generateIconsFor({
}
platform.createIcons();
progress.finish(message: 'done', showTiming: true);
} catch (e) {
} catch (e, st) {
progress.cancel();
logger
..error(e.toString())
..verbose(st);
continue;
}
}
Expand Down

0 comments on commit a769629

Please sign in to comment.