Skip to content

Commit

Permalink
rename properties (palantir#2)
Browse files Browse the repository at this point in the history
* rename properties

* docs
  • Loading branch information
nziebart authored May 31, 2017
1 parent 2774799 commit 2f3199d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
/** An interface denoting a message that can be safely logged. */
public interface SafeLoggable {

/** The format of the message. Arguments placeholders should be represented by "{}". */
String getMessageFormat();
/** The message, which is safe to log. */
String getMessage();

/** The arguments for the message. */
List<Arg<?>> getMessageArgs();
/** The arguments associated with the message. */
List<Arg<?>> getArgs();

}

0 comments on commit 2f3199d

Please sign in to comment.