Compare commits

...

1 Commits

Author SHA1 Message Date
jlosornogil
02decc91d4 REPO-5712 Fix exception logging in EventGeneratorQueue
Include the exception stacktrace so that any event framework
wrong configuration can be easily detected.
2022-04-22 16:45:48 +02:00

View File

@@ -91,7 +91,7 @@ public class EventGeneratorQueue implements InitializingBean
}
catch (Exception e)
{
LOGGER.error("Unexpected error while enqueuing maker function for repository event" + e);
LOGGER.error("Unexpected error while enqueuing maker function for repository event", e);
}
});
}
@@ -122,7 +122,7 @@ public class EventGeneratorQueue implements InitializingBean
}
catch (Exception e)
{
LOGGER.error("Unexpected error while dequeuing and sending repository event" + e);
LOGGER.error("Unexpected error while dequeuing and sending repository event", e);
}
}
}