Skip to content

Commit

Permalink
Merge pull request #549 from jklaise/logging_bug
Browse files Browse the repository at this point in the history
Fix logging bug in Python wrapper
  • Loading branch information
ukclivecox authored May 8, 2019
2 parents 18db0f3 + f22620d commit d2dc7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/seldon_core/microservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def main():

parts = args.interface_name.rsplit(".", 1)
if len(parts) == 1:
logger.info("Importing ",args.interface_name)
logger.info("Importing %s",args.interface_name)
interface_file = importlib.import_module(args.interface_name)
user_class = getattr(interface_file, args.interface_name)
else:
Expand Down

0 comments on commit d2dc7d0

Please sign in to comment.