You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Returns a template key for this log statement, or {@code null} if the statement does not
* require formatting (in which case the message to be logged can be determined by calling
* {@link #getLiteralArgument()}).
*/
TemplateContext getTemplateContext();
However, this method is not marked @NullableDecl or @Nullable, so returning null triggers warnings from static analyzers.
The text was updated successfully, but these errors were encountered:
LogData.getTemplateContext()
is documented to returnnull
for statements which do not require formatting:However, this method is not marked
@NullableDecl
or@Nullable
, so returningnull
triggers warnings from static analyzers.The text was updated successfully, but these errors were encountered: