os_log 를 사용해서 console 앱으로 로그를 찍어보면 <private>으로 내용이 나오는 경우가 있다. 해당 정보를 보기위해서는 info.plist에서 설정을 추가해주면 된다.
<key>OSLogPreferences</key>
<dict>
<key>put.your.subsystem.name.here</key>
<dict>
<key>put.your.category.name.here</key>
<dict>
<key>Level</key>
<dict>
<key>Enable</key>
<string>Debug</string>
<key>Persist</key>
<string>Debug</string>
</dict>
<key>Enable-Private-Data</key>
<true/>
</dict>
</dict>
</dict>
참고자료
반응형
'Swfit' 카테고리의 다른 글
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory 에러 해결방법 (0) | 2024.11.14 |
---|---|
Console에서 info, debug 내용 나오지 않을 때 (0) | 2024.07.20 |
Structure의 immutability (2) | 2024.04.21 |
super.viewDidLoad를 호출하는 이유 (1) | 2024.03.21 |
Struct에서 mutating function을 사용하는 이유 (0) | 2024.02.08 |