From 147b743fd0690f34111d784db827f85fccd2eae2 Mon Sep 17 00:00:00 2001 From: Brett Camper Date: Wed, 3 Aug 2016 14:29:43 -0400 Subject: [PATCH] missing sprite match should be debug message, not warning --- src/styles/points/points.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/points/points.js b/src/styles/points/points.js index f3528b1f0..72f4e02b0 100755 --- a/src/styles/points/points.js +++ b/src/styles/points/points.js @@ -136,7 +136,7 @@ Object.assign(Points, { } } else { - log('warn', `Style: in style '${this.name}', could not find sprite '${sprite}' for texture '${this.texture}'`); + log('debug', `Style: in style '${this.name}', could not find sprite '${sprite}' for texture '${this.texture}'`); return; } }