From 435b010f9f7248e3d2b85307898ed90522aea2d3 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Mon, 16 Feb 2015 11:31:07 -0500 Subject: [PATCH] Changed $log.info to $log.debug we only want certain messages to post to the console when in debug mode --- 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 472fecea22..0979f9be73 100644 --- a/awx/ui/static/js/helpers/Variables.js +++ b/awx/ui/static/js/helpers/Variables.js @@ -34,7 +34,7 @@ angular.module('VariablesHelper', ['Utilities']) } catch (e) { - $log.info('Attempt to parse extra_vars as JSON failed. Check that the variables parse as yaml. Set the raw string as the result.'); + $log.debug('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);