Skip to content

Commit

Permalink
Update create_manifest_cubit.dart
Browse files Browse the repository at this point in the history
add log for error creating manifest file
  • Loading branch information
thiagocarvalhodev committed May 13, 2024
1 parent ac28404 commit d00988c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/blocs/create_manifest/create_manifest_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,9 @@ class CreateManifestCubit extends Cubit<CreateManifestState> {
existingManifestFileId: existingManifestFileId,
),
);
} catch (err) {
addError(err);
} catch (e) {
logger.e('Failed to prepare manifest file', e);
addError(e);
}
}

Expand Down

0 comments on commit d00988c

Please sign in to comment.