diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-07-07 18:26:12 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-07-07 18:26:12 +0200 |
commit | ad0997adfb9e1e3b1ff54338d7558cf7b18440ea (patch) | |
tree | 78ef53699d260e194bbcda7eccb645a14070679a /server/controllers/api/pods.ts | |
parent | 709756b8e183f67ef9bf8f7bc149af4736260350 (diff) | |
download | PeerTube-ad0997adfb9e1e3b1ff54338d7558cf7b18440ea.tar.gz PeerTube-ad0997adfb9e1e3b1ff54338d7558cf7b18440ea.tar.zst PeerTube-ad0997adfb9e1e3b1ff54338d7558cf7b18440ea.zip |
Fix error logging
Diffstat (limited to 'server/controllers/api/pods.ts')
-rw-r--r-- | server/controllers/api/pods.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/pods.ts b/server/controllers/api/pods.ts index 0f85ab51d..55a7df661 100644 --- a/server/controllers/api/pods.ts +++ b/server/controllers/api/pods.ts | |||
@@ -81,7 +81,7 @@ function makeFriendsController (req: express.Request, res: express.Response, nex | |||
81 | 81 | ||
82 | makeFriends(hosts) | 82 | makeFriends(hosts) |
83 | .then(() => logger.info('Made friends!')) | 83 | .then(() => logger.info('Made friends!')) |
84 | .catch(err => logger.error('Could not make friends.', { error: err })) | 84 | .catch(err => logger.error('Could not make friends.', err)) |
85 | 85 | ||
86 | // Don't wait the process that could be long | 86 | // Don't wait the process that could be long |
87 | res.type('json').status(204).end() | 87 | res.type('json').status(204).end() |