From 0d0f1a08cf5a2ce92d99bd9e79b7d680b6f7c6d4 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Tue, 25 Sep 2018 13:49:10 +0200 Subject: [PATCH] =?UTF-8?q?Added=20=F0=9F=8F=83=F0=9F=8F=BF=E2=80=8D?= =?UTF-8?q?=E2=99=80=EF=B8=8F=20to=20sample=20run=20debug=20messages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pattern.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pattern.js b/src/pattern.js index 90bf09e363b..7def7052eaf 100644 --- a/src/pattern.js +++ b/src/pattern.js @@ -170,7 +170,7 @@ Pattern.prototype.sampleOption = function(optionName) { this.options[optionName] = val; this.debug( "info", - "Sample run", + "🏃🏿‍♀️ Sample run", `Sampling option ${optionName} with value ${round(val)}` ); this.sampleRun(parts, anchors, run, 10); @@ -191,7 +191,7 @@ Pattern.prototype.sampleListOption = function(optionName) { this.options[optionName] = val; this.debug( "info", - "Sample run", + "🏃🏿‍♀️ Sample run", `Sampling option ${optionName} with value ${round(val)}` ); this.sampleRun(parts, anchors, run, runs); @@ -216,7 +216,7 @@ Pattern.prototype.sampleMeasurement = function(measurementName) { this.settings.measurements[measurementName] = val; this.debug( "info", - "Sample run", + "🏃🏿‍♀️ Sample run", `Sampling measurement ${measurementName} with value ${round(val)}` ); this.sampleRun(parts, anchors, run, 10); @@ -238,7 +238,7 @@ Pattern.prototype.sampleModels = function(models, focus = false) { for (let l in models) { run++; this.settings.measurements = models[l]; - this.debug("info", "Sample run", `Sampling model ${l}`); + this.debug("info", "🏃🏿‍♀️ Sample run", `Sampling model ${l}`); let className = l === focus ? "sample-focus" : ""; this.sampleRun(parts, anchors, run, runs, className); }