Skip to content

Commit

Permalink
Fixing the error message order
Browse files Browse the repository at this point in the history
Signed-off-by: kn891873 <katelyn.nienaber@broadcom.com>
  • Loading branch information
katelynienaber committed Dec 10, 2020
1 parent a6a5e5d commit 222738f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EndevorController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export class EndevorController {
endevorDataProvider.addSession(connName);
} catch (error) {
const errMsg = `Profile ${connName} defined in settings.json was not found. Make sure the profile is defined or remove it from settings.json. \n\n ${error.stack}`;
logger.warn(errMsg, error.message);
logger.warn(error.message, errMsg);
}
}
});
Expand Down

0 comments on commit 222738f

Please sign in to comment.