mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
When logging IOException for put, include error
This commit is contained in:
parent
1041b8d332
commit
bb7831012b
1 changed files with 1 additions and 1 deletions
|
@ -473,7 +473,7 @@ public class Bridge {
|
||||||
);
|
);
|
||||||
throw e;
|
throw e;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Log.warn("[{}] IOException on put", projectName);
|
Log.warn("[{}] IOException on put: {}", projectName, e);
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue