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?
2 Should a global Logger be passed from parent objects to child objects (like a dependency injection), or is creating new instances of Logger for many objects ok?
Post
Replies
Boosts
Views
Activity
My app records voices from multiple microphone inputs simultaneously and would like to have a way to transcribe them and be able to discern which voice is which in the end - to have multiple “transcribers” going at once. How would this best be accomplished given the SFSpeechRecognizer framework?