@@ -290,7 +290,6 @@ export class DecisionService {
290290 this . getDecisionFromBucketer ( op , configObj , experiment , user ) ;
291291
292292 return decisionVariationValue . then ( ( variationResult ) : Value < OP , VariationResult > => {
293- console . log ( 'variationResult' , variationResult ) ;
294293 decideReasons . push ( ...variationResult . reasons ) ;
295294 if ( variationResult . error ) {
296295 return Value . of ( op , {
@@ -336,7 +335,6 @@ export class DecisionService {
336335 this . updateUserProfile ( experiment , variation , userProfileTracker ) ;
337336 }
338337
339- console . log ( 'variationResult' , variationResult . result ) ;
340338 return Value . of ( op , {
341339 result : { variationKey : variation . key , cmabUuid : variationResult . result . cmabUuid } ,
342340 reasons : decideReasons ,
@@ -425,7 +423,6 @@ export class DecisionService {
425423 } ;
426424 }
427425 ) . catch ( ( ex : any ) => {
428- console . log ( 'cmab error got ....' , ex )
429426 this . logger ?. error ( CMAB_FETCH_FAILED , experiment . key ) ;
430427 return {
431428 error : true ,
@@ -1160,7 +1157,6 @@ export class DecisionService {
11601157 decideReasons . push ( ...decisionVariation . reasons ) ;
11611158
11621159 if ( decisionVariation . error ) {
1163- console . log ( 'reasons are ,,,' , decideReasons , decisionVariation . reasons ) ;
11641160 return Value . of ( op , {
11651161 error : true ,
11661162 result : {
@@ -1645,7 +1641,6 @@ export class DecisionService {
16451641 const decisionVariationValue = this . resolveVariation ( op , configObj , rule , user , decideOptions , userProfileTracker ) ;
16461642
16471643 return decisionVariationValue . then ( ( variationResult ) => {
1648- // console.log('variationResult a', variationResult);
16491644 decideReasons . push ( ...variationResult . reasons ) ;
16501645 return Value . of ( op , {
16511646 error : variationResult . error ,
0 commit comments