If an instance of Logger is created with the same subsystem and identifier in another part of the app, will they conflict in Bad Ways?
Logger instances best practice
You can create multiple Loggers with the same subsystem: and category:.
However, please prefer one Logger for a given category to many instances for many objects.
(For C and Objective-C programmers, the same applies to os_log_ts from os_log_create.)
However, please prefer one Logger for a given category to many instances for many objects.
(For C and Objective-C programmers, the same applies to os_log_ts from os_log_create.)