Skip to content

Commit

Permalink
- extended error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
aschnell committed Jun 17, 2024
1 parent f34323d commit 7e2acf6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions zypp-plugin/snapper-zypp-plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ SnapperZyppCommitPlugin::commit_begin(const Message& msg)
{
SN_CAUGHT(ex);
y2err(error_description(ex));
y2err(ex.name());
y2err(ex.message());
}
catch (const Exception& ex)
{
Expand Down Expand Up @@ -193,6 +195,8 @@ SnapperZyppCommitPlugin::commit_end(const Message& msg)
{
SN_CAUGHT(ex);
y2err(error_description(ex));
y2err(ex.name());
y2err(ex.message());
}
catch (const Exception& ex)
{
Expand All @@ -212,6 +216,8 @@ SnapperZyppCommitPlugin::commit_end(const Message& msg)
{
SN_CAUGHT(ex);
y2err(error_description(ex));
y2err(ex.name());
y2err(ex.message());
}
catch (const Exception& ex)
{
Expand All @@ -232,6 +238,8 @@ SnapperZyppCommitPlugin::commit_end(const Message& msg)
{
SN_CAUGHT(ex);
y2err(error_description(ex));
y2err(ex.name());
y2err(ex.message());
}
catch (const Exception& ex)
{
Expand Down

0 comments on commit 7e2acf6

Please sign in to comment.