From 2256252d539e2912b960855cc32e65d2a1819151 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Thu, 29 Dec 2016 20:56:28 +0900
Subject: [PATCH] Use gutil instead of console

---
 gulpfile.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gulpfile.ts b/gulpfile.ts
index 8a87621d9..030152776 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -190,7 +190,7 @@ gulp.task('build:client:scripts', done => {
 
 					.transform(transformify((source, file) => {
 						if (file.substr(-4) !== '.tag') return source;
-						console.log(file);
+						gutil.log('Build Tag: ' + file);
 						return source;
 					}))