Add log when we're done with auto-closing changes

This helps with debugging.

Change-Id: I9ec5ec5d4f6f83beeec9b4913dc98924e549e8a7
This commit is contained in:
Patrick Hiesel
2020-05-07 10:02:07 +02:00
parent f37f034bd5
commit acb11c4083

View File

@@ -3360,6 +3360,8 @@ class ReceiveCommits {
logger.atSevere().withCause(e).log("Can't insert patchset");
} catch (UpdateException e) {
logger.atSevere().withCause(e).log("Failed to auto-close changes");
} finally {
logger.atFine().log("Done auto-closing changes");
}
}
}