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.
この問題が発生します:
"Exception handlers should provide some context and preserve the original exception"
次のようなコードで:
catch (IOException e) { Log.e(AnkiDroidApp.TAG, "<actual message here"); }
ロガーが Logger ではなく Log であることを Sonar に伝えるにはどうすればよいですか?
ソナーの苦情を誤解していたことが判明しました。ロガーの特定の名前は想定していませんでしたが、次のように、コードがメッセージと例外自体の両方をロガーに送信する必要がありました。
catch (IOException e) { Log.e(AnkiDroidApp.TAG, "<actual message here", e); }