From 0e9007e9efc6df4c96a5e28ea2ff7964e3190dbd Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 27 Jul 2016 20:11:45 -0700 Subject: [PATCH] fix debug --- src/routes/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/apps.js b/src/routes/apps.js index f2b20347a..3e08b5efd 100644 --- a/src/routes/apps.js +++ b/src/routes/apps.js @@ -123,7 +123,7 @@ function installApp(req, res, next) { if (data.xFrameOptions && typeof data.xFrameOptions !== 'string') return next(new HttpError(400, 'xFrameOptions must be a string')); - debug('Installing app id:%s data:%j', data); + debug('Installing app :%j', data); apps.install(data, auditSource(req), function (error, app) { if (error && error.reason === AppsError.ALREADY_EXISTS) return next(new HttpError(409, error.message));