Skip to content

Commit

Permalink
[dist] Switch copy for appError and solenoidError.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Aug 30, 2013
1 parent fe03793 commit 5f698ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jitsu.js
Expand Up @@ -315,7 +315,7 @@ jitsu.showError = function (command, err, shallow, skip) {
// Displays a "solenoid" error.
//
function solenoidError(display) {
jitsu.log.error('Error starting application. This is usually a user error.');
jitsu.log.error('Error starting application. This could be a user error.');
display.solenoid.split('\n').forEach(function (line) {
jitsu.log.error(line);
});
Expand All @@ -327,7 +327,7 @@ jitsu.showError = function (command, err, shallow, skip) {
//
function appError(display) {
if (display.output) {
jitsu.log.error('Error output from application. This could be a user error.');
jitsu.log.error('Error output from application. This is usually a user error.');
display.output.split('\n').forEach(function (line) {
jitsu.log.error(line);
})
Expand Down

0 comments on commit 5f698ce

Please sign in to comment.