Skip to content
Snippets Groups Projects
Commit 19f04bee authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: log message when failing to create PR

parent 85a09fff
No related branches found
Tags ghost-0.1.9
No related merge requests found
...@@ -249,7 +249,7 @@ async function ensurePr(prConfig) { ...@@ -249,7 +249,7 @@ async function ensurePr(prConfig) {
config.statusCheckVerify config.statusCheckVerify
); );
} catch (err) { } catch (err) {
logger.warn({ err }, `Failed to create PR`); logger.warn({ err, message: err.message }, `Failed to create PR`);
return null; return null;
} }
// Skip assign and review if automerging PR // Skip assign and review if automerging PR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment