@@ -883,7 +883,7 @@ ProjectConfig config
883
883
884
884
if ( ! holdout . IsActivated )
885
885
{
886
- reasons . AddInfo ( "Holdout ({0}) is not running." , holdout . Key ) ;
886
+ reasons . AddInfo ( $ "Holdout \" { holdout . Key } \" is not running.") ;
887
887
return Result < FeatureDecision > . NewResult (
888
888
new FeatureDecision ( null , null , FeatureDecision . DECISION_SOURCE_HOLDOUT ) ,
889
889
reasons
@@ -902,11 +902,7 @@ ProjectConfig config
902
902
903
903
if ( ! audienceResult . ResultObject )
904
904
{
905
- reasons . AddInfo (
906
- "User ({0}) does not meet conditions for holdout ({1})." ,
907
- userId ,
908
- holdout . Key
909
- ) ;
905
+ reasons . AddInfo ( $ "User \" { userId } \" does not meet conditions for holdout ({ holdout . Key } ).") ;
910
906
return Result < FeatureDecision > . NewResult (
911
907
new FeatureDecision ( null , null , FeatureDecision . DECISION_SOURCE_HOLDOUT ) ,
912
908
reasons
@@ -920,22 +916,14 @@ ProjectConfig config
920
916
921
917
if ( bucketedVariation . ResultObject != null )
922
918
{
923
- reasons . AddInfo (
924
- "User ({0}) is bucketed into holdout variation ({1})." ,
925
- userId ,
926
- bucketedVariation . ResultObject . Key
927
- ) ;
919
+ reasons . AddInfo ( $ "User \" { userId } \" is bucketed into holdout variation \" { bucketedVariation . ResultObject . Key } \" .") ;
928
920
return Result < FeatureDecision > . NewResult (
929
921
new FeatureDecision ( holdout , bucketedVariation . ResultObject , FeatureDecision . DECISION_SOURCE_HOLDOUT ) ,
930
922
reasons
931
923
) ;
932
924
}
933
925
934
- reasons . AddInfo (
935
- "User ({0}) is not bucketed into holdout variation ({1})." ,
936
- userId ,
937
- holdout . Key
938
- ) ;
926
+ reasons . AddInfo ( $ "User \" { userId } \" is not bucketed into holdout variation \" { holdout . Key } \" .") ;
939
927
940
928
return Result < FeatureDecision > . NewResult (
941
929
new FeatureDecision ( null , null , FeatureDecision . DECISION_SOURCE_HOLDOUT ) ,
0 commit comments