Skip to content

Commit 0d6f417

Browse files
committed
Removed extra console logging.
1 parent 76a562c commit 0d6f417

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/directives/schema-validate.js

-2
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,10 @@ angular.module('schemaForm').directive('schemaValidate', ['sfValidator', 'sfSele
150150
if (destroyStrategy === 'retain') {
151151
return; // Valid option to avoid destroying data in the model.
152152
}
153-
console.log('result %s', destroyStrategy);
154153

155154
destroyUsingStrategy(destroyStrategy);
156155

157156
function destroyUsingStrategy(strategy) {
158-
console.log('Destroy called with %s', strategy);
159157
var strategyIsDefined = (strategy === null || strategy === '' || strategy === undefined);
160158
if (!strategyIsDefined){
161159
strategy = DEFAULT_DESTROY_STRATEGY;

0 commit comments

Comments
 (0)