diff --git a/lib/dsc-lib/locales/en-us.toml b/lib/dsc-lib/locales/en-us.toml index 149dbfcb8..3c87d081e 100644 --- a/lib/dsc-lib/locales/en-us.toml +++ b/lib/dsc-lib/locales/en-us.toml @@ -183,7 +183,7 @@ noArgs = "No args to process" parseAsEnvVars = "Parsing input as environment variables" parseAsStdin = "Parsing input as stdin" noInput = "No input kind specified" -verifyJson = "Verify JSON for '%{resource}'" +verifyJson = "Verify JSON for '%{resource}': %{json}" validateJson = "Validating against JSON: %{json}" resourceInvalidJson = "Resource reported input JSON is not valid" invalidArrayKey = "Unsupported array value for key '%{key}'. Only string and number is supported." diff --git a/lib/dsc-lib/src/dscresources/command_resource.rs b/lib/dsc-lib/src/dscresources/command_resource.rs index 47341e8a7..d43f20851 100644 --- a/lib/dsc-lib/src/dscresources/command_resource.rs +++ b/lib/dsc-lib/src/dscresources/command_resource.rs @@ -1105,7 +1105,7 @@ fn get_command_input(input_kind: Option<&InputKind>, input: &str) -> Result) -> Result<(), DscError> { - debug!("{}", t!("dscresources.commandResource.verifyJson", resource = resource.type_name)); + trace!("{}", t!("dscresources.commandResource.verifyJson", resource = resource.type_name, json = json)); let Some(manifest) = &resource.manifest else { return Err(DscError::MissingManifest(resource.type_name.to_string())); };