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
itwinai.loggers.LoggersCollection allows to log using multiple loggers at the same time. However, it is not possible for the users to select which logger should log when calling the log(...) method, resulting in all loggers in the collection to log simultaneously.
Maybe we could index each logger in the collection with a name (defaults to __class__.__name__) and use it to explicitly specify which logger should log what in the log(..., loggers=['cool_mlflow', 'nice_wandb']).
The text was updated successfully, but these errors were encountered:
itwinai.loggers.LoggersCollection
allows to log using multiple loggers at the same time. However, it is not possible for the users to select which logger should log when calling thelog(...)
method, resulting in all loggers in the collection to log simultaneously.Maybe we could index each logger in the collection with a name (defaults to
__class__.__name__
) and use it to explicitly specify which logger should log what in thelog(..., loggers=['cool_mlflow', 'nice_wandb'])
.The text was updated successfully, but these errors were encountered: