아이폰으로 로그인시 web filter logging 에러가 발생합니다. 이유를 몰라서 질문 드립니다

iOS 10에서 로그인 기능을 구현하려고 테스트하다보니, WebFilter logging 에러가 발생합니다.

LSApplicationQueriesSchemes 관련 내용 및 기본 내용을 다 입력한것 같은데, 문제가 발생합니다.

아시는 분 답변 부탁 드립니다.

2017-01-13 16:38:19.395841 앱이름[2466:767741] -canOpenURL: failed for URL: "kakaokompassauth://authorize" - error: "This app is not allowed to query for scheme kakaokompassauth"
2017-01-13 16:38:19.396802 앱이름[2466:767741] -canOpenURL: failed for URL: "storykompassauth://authorize" - error: "This app is not allowed to query for scheme storykompassauth"
2017-01-13 16:38:20.071642 앱이름[2466:767778] WF: === Starting WebFilter logging for process 앱이름
2017-01-13 16:38:20.073433 앱이름[2466:767778] WF: _userSettingsForUser mobile: {
    filterBlacklist =     (
    );
    filterWhitelist =     (
    );
    restrictWeb = 1;
    useContentFilter = 0;
    useContentFilterOverrides = 0;
    whitelistEnabled = 0;
}
2017-01-13 16:38:20.073530 앱이름[2466:767778] WF: _WebFilterIsActive returning: NO
2017-01-13 16:38:24.398501 앱이름[2466:767741] [MC] System group container for systemgroup.com.apple.configurationprofiles path is /private/var/containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles
2017-01-13 16:38:24.412390 앱이름[2466:767741] [MC] Reading from public effective user settings./private/var/containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles
2017-01-13 16:09:28.251974 앱이름[2450:760993] [MC] Reading from public effective user settings.
2017-01-13 16:09:36.152037 앱이름[2450:761140] WF: _userSettingsForUser mobile: {
    filterBlacklist =     (
    );
    filterWhitelist =     (
    );
    restrictWeb = 1;
    useContentFilter = 0;
    useContentFilterOverrides = 0;
    whitelistEnabled = 0;
}
2017-01-13 16:09:36.152168 앱이름[2450:761140] WF: _WebFilterIsActive returning: NO

@paulh 아… 이건 분명 LSApplicationQueriesSchemes 관련 문제인데… 해당 앱의 plist에서 아래가 잘 되었는지 다시한번 확인좀 부탁드려요.

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>kakao__your__app__key</string>
    <string>kakaokompassauth</string>
    <string>storykompassauth</string>
    <string>kakaolink</string>
    <string>kakaotalk-4.5.0</string>
    <string>kakaostory-2.9.0</string>
    <string>storylink</string>
</array>