I have a XCode project which builds an executable (swift package init --type executable && swift package generate-xcodeproj
). The executable imports a framework which normally logs messages to the console, but because the framework is imported by the executable the log messages are not shown.
How can I display log messages (Log.debug("Bla bla")
) from inside a module/framework invoked by an executable in the XCode console?