Closed gustavogaldinoo closed 7 months ago
Improving log message by displaying only function name, instead of trying to print function itself.
Also took the opportunity to replace Callable with FunctionType when declaring argument type, as Callable is more generic.
Callable
FunctionType
Before:
After:
Add me as a reviewer to PRs to make sure I see it!
Improving log message by displaying only function name, instead of trying to print function itself.
Also took the opportunity to replace
Callable
withFunctionType
when declaring argument type, as Callable is more generic.Before:
After: