Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/monarch/_src/actor/actor_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def filter(self, record: Any) -> bool:
fn = _monarch_actor().per_actor_logging_prefix
ctx = _context.get(None)
if ctx is not None and fn is not None:
record.msg = fn(ctx.actor_instance) + record.msg
record.msg = f"{fn(ctx.actor_instance)}{record.msg}"
return True


Expand Down
Loading