From 53b2105555d9495ff45dca0bb542a34336ba69fa Mon Sep 17 00:00:00 2001 From: jlmitch5 Date: Fri, 6 Feb 2015 10:28:09 -0500 Subject: [PATCH] Fixing log message --- awx/ui/static/js/helpers/Variables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/Variables.js b/awx/ui/static/js/helpers/Variables.js index a939217b50..58a175cb51 100644 --- a/awx/ui/static/js/helpers/Variables.js +++ b/awx/ui/static/js/helpers/Variables.js @@ -35,7 +35,7 @@ angular.module('VariablesHelper', ['Utilities']) } catch (e) { - $log.info('Attempt to parse extra_vars as JSON failed. Send the yaml from the backend'); + $log.info('Attempt to parse extra_vars as JSON failed. Check that the variables parse as yaml. Set the raw string as the result.'); try { // do safeLoad, which well error if not valid yaml json_obj = jsyaml.safeLoad(variables);