We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e640b3 commit 2b95529Copy full SHA for 2b95529
UnleashClient/loader.py
@@ -27,8 +27,10 @@ def _create_strategies(provisioning: dict,
27
strategy_mapping[strategy['name']](constraints=constraint_provisioning, parameters=strategy_provisioning)
28
)
29
except Exception as excep:
30
- LOGGER.warning("Failed to load strategy. This may be a problem with a custom strategy. Exception: %s",
31
- excep)
+ LOGGER.warning("Failed to load strategy. This may be a problem with a custom strategy. "
+ "Exception: {}, Provisioning : {}, Strategy Mapping: {}".format(excep,
32
+ provisioning,
33
+ strategy_mapping))
34
35
return feature_strategies
36
0 commit comments