We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8608f67 commit bcffd63Copy full SHA for bcffd63
1 file changed
index.js
@@ -48,6 +48,12 @@ var DeployPluginBase = CoreObject.extend({
48
}
49
return configuredValue;
50
},
51
+
52
+ logRaw: function(message) {
53
+ var ui = this.ui;
54
+ ui.writeLine(message);
55
+ },
56
57
log: function(message, opts) {
58
opts = opts || { color: 'blue' };
59
opts.color = opts.color || 'blue';
@@ -66,7 +72,7 @@ var DeployPluginBase = CoreObject.extend({
66
72
67
73
68
74
var chalkColor = chalk[opts.color];
69
- ui.writeLine(chalkColor('- ' + message));
75
+ this.logRaw(chalkColor('- ' + message));
70
76
71
77
78
});
0 commit comments