You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One performance nitpick - better off using the old school string formatting syntax than string interpolation, because due to the way Akka.NET's logging is designed we can actually defer allocation of strings until we're ready to print the log statement out to console using the old technique. If the LogLevel is set at INFO, which is is by default, this saves us an unnecessary allocation each time. It can really add up in busy ActorSystems.
The text was updated successfully, but these errors were encountered:
As per @Aaronontheweb :
The text was updated successfully, but these errors were encountered: