Skip to content

Commit

Permalink
Remove translation for validation debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
kpollich committed Aug 30, 2021
1 parent 1745161 commit ce7c370
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,7 @@ export const validatePackagePolicyConfig = (

if (varDef === undefined) {
// eslint-disable-next-line no-console
console.debug(
i18n.translate('xpack.fleet.packagePolicyValidation.noVarDefErrorMessage', {
defaultMessage: 'No variable definition for {name} found ',
values: {
name: varName,
},
})
);
console.debug(`No variable definition for ${varName} found`);

return null;
}
Expand Down

0 comments on commit ce7c370

Please sign in to comment.