Skip to content

Commit 1dd0604

Browse files
committed
Don't print
1 parent 290506d commit 1dd0604

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

stdlib/public/Distributed/LocalTestingDistributedActorSystem.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ public final class LocalTestingDistributedActorSystem: DistributedActorSystem, @
5858
public func assignID<Act>(_ actorType: Act.Type) -> ActorID
5959
where Act: DistributedActor {
6060
let id = ActorAddress(parse: "\(self.idProvider.next())")
61-
print("| assign id: \(id) for \(actorType)")
6261
self.assignedIDs.insert(id)
6362
return id
6463
}
@@ -69,7 +68,6 @@ public final class LocalTestingDistributedActorSystem: DistributedActorSystem, @
6968
guard self.assignedIDs.contains(actor.id) else {
7069
fatalError("Attempted to mark an unknown actor '\(actor.id)' ready")
7170
}
72-
print("| actor ready: \(actor)")
7371
self.activeActors[actor.id] = actor
7472
}
7573

0 commit comments

Comments
 (0)