Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个构建可执行文件(swift package init --type executable && swift package generate-xcodeproj)的 XCode 项目。可执行文件会导入一个通常将消息记录到控制台的框架,但由于该框架是由可执行文件导入的,因此不会显示日志消息。
swift package init --type executable && swift package generate-xcodeproj
如何Log.debug("Bla bla")从 XCode 控制台中的可执行文件调用的模块/框架内部显示日志消息 ()?
Log.debug("Bla bla")