diff --git a/packages/amplify_core/lib/src/category/amplify_logging_category.dart b/packages/amplify_core/lib/src/category/amplify_logging_category.dart index 651bfad283..ef55e5d945 100644 --- a/packages/amplify_core/lib/src/category/amplify_logging_category.dart +++ b/packages/amplify_core/lib/src/category/amplify_logging_category.dart @@ -61,6 +61,9 @@ class LoggingCategory extends AmplifyCategory { /// Sends recorded logs to the output and remove them from the local storage. /// {@endtemplate} void flushLogs() { - return identifyCall(LoggingCategoryMethod.flush, () => defaultPlugin.flushLogs(),); + return identifyCall( + LoggingCategoryMethod.flush, + () => defaultPlugin.flushLogs(), + ); } }