From d6d9022c7fce8275c7016ed3ca45309dedb20bc9 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Mon, 4 Jun 2018 13:12:06 -0700 Subject: [PATCH] Coerce format string to upper for better log consistency --- app/utils/query_info.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/utils/query_info.js b/app/utils/query_info.js index b56114ba..c605c785 100644 --- a/app/utils/query_info.js +++ b/app/utils/query_info.js @@ -17,6 +17,7 @@ module.exports = { if (result && result.length === 2) { if (COPY_FORMATS.includes(result[1])) { format = result[1]; + format = format.toUpperCase(); } else { format = false; }