Coerce format string to upper for better log consistency

This commit is contained in:
Paul Ramsey 2018-06-04 13:12:06 -07:00
parent aee15ebc8d
commit d6d9022c7f

View File

@ -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;
}