Skip to content

Commit

Permalink
Merge pull request #914 from aschnell/master
Browse files Browse the repository at this point in the history
- extended error logging
  • Loading branch information
aschnell authored Jun 17, 2024
2 parents 2d38710 + 7e2acf6 commit 82b4986
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 82b4986

Please sign in to comment.