diff --git a/src/fastify-plugins/maps/index.js b/src/fastify-plugins/maps/index.js index 0b148dd08..6fc4cfb17 100644 --- a/src/fastify-plugins/maps/index.js +++ b/src/fastify-plugins/maps/index.js @@ -119,11 +119,11 @@ async function routes(fastify, opts) { return upstreamResponse.json() } else { fastify.log.error( - `Upstream style.json request failed: ${upstreamResponse.status} ${upstreamResponse.statusText}` + `Upstream style.json request returned non-2xx status: ${upstreamResponse.status} ${upstreamResponse.statusText}` ) } } catch (err) { - fastify.log.warn('Upstream style.json request totally failed', err) + fastify.log.warn('Failed to make upstream style.json request', err) } }