Skip to content

Commit f50965b

Browse files
committed
fixing log length
1 parent 44f9c60 commit f50965b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

featuremanagement/_featuremanagerbase.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,8 @@ def _build_targeting_context(self, args: Tuple[Any]) -> TargetingContext:
243243
if targeting_context and isinstance(targeting_context, TargetingContext):
244244
return targeting_context
245245
logging.warning(
246-
f"targeting_context_accessor did not return a TargetingContext. Received type {type(targeting_context)}."
246+
"targeting_context_accessor did not return a TargetingContext. Received type %s.",
247+
type(targeting_context),
247248
)
248249
return TargetingContext()
249250

0 commit comments

Comments
 (0)