Merge pull request #82 from overleaf/sk-add-error-to-log

When logging IOException for put, include error
This commit is contained in:
Shane Kilkelly
2020-09-02 09:30:36 +01:00
committed by GitHub
@@ -473,7 +473,7 @@ public class Bridge {
);
throw e;
} catch (IOException e) {
Log.warn("[{}] IOException on put", projectName);
Log.warn("[{}] IOException on put: {}", projectName, e);
throw e;
}