History log of /external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
31212435723e2dfd5d6716d1f6a7b0e66a1e6b38 26-Mar-2015 Ceki Gulcu <ceki@qos.ch> Reformat all code with the exception of the slf4j-android module to use 4 space indentation and max line width of 160.
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
ca1dbbf65ef5293429c1329b523e7008a47b1964 13-Dec-2014 Alexander Dorokhine <adorokhine@google.com> Fix tests which are no longer running.
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
8737f4a0540271b655291f3c0d31b4084e1f473a 27-Nov-2014 Ceki Gulcu <ceki@qos.ch> slightly better test method names
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
7ba0605dc97fb81bde8311510d27b3ccba170008 16-Oct-2011 Ceki Gulcu <ceki@qos.ch> update license headers to current year
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
4e9748b4696e1ca6c80ce6be7fe2096e9639ba04 21-Apr-2010 Ceki Gulcu <ceki@qos.ch> - removed the deprecated jcl104-over-slf4j module
- minor corrections
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
f590669b6523cf01f76e4b099b550fa98b9f9f68 21-Apr-2010 Ceki Gulcu <ceki@qos.ch> - added test cases
- updated the docs
- preparing release 1.6.0-RC0
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
3c0ab3466b6fa6e915974c72558d64c570734700 09-Apr-2010 Ceki Gulcu <ceki@qos.ch> Fixing bug 70
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
88c4c456766193e012eb890e2208473d99b91f83 03-Dec-2009 Ceki Gulcu <ceki@qos.ch> setting autocrlf = true on windows - no logical changes
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
debfce7d191c0cab56e1c0eb51c4124ba8be8984 10-Jun-2009 Ceki Gulcu <ceki@qos.ch> Fixed bug 112. In case the toString() of an parameter throws an exception MessageFormatter will print an error message, instead of cascading the exception.
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
c2133d85d99066e1b806af63f09d4641ce39aa61 18-Aug-2008 Ceki Gulcu <ceki@qos.ch> Parameter substitution code has been simplified. SLF4J now only
cares about the "{}" formatting anchor, that is the '{' character
immediately followed by '}'. Previously, the '{' had meaning on its
own. As a result of this change, users no longer need to escape the
'{' unless it is immediately followed by '}'. Existing messages
which escaped standalone '{' character will be printed with a
preceding backslash. However, no data loss in the printed messages
will occur.

The new code also runs about 5% faster.
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
6130869c96ebf3911ee4cd272e1496a5a6620c94 05-Aug-2008 Ceki Gulcu <ceki@qos.ch> - support for cyclical arrays
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
00ec8fc6cb1b25a04d9b388d974f149b0f64c108 01-Aug-2008 Ceki Gulcu <ceki@qos.ch> - redone support for array parameters using JDK 1.4 functionality
multi-dimensional array are now also supported
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
2ba15cd83de88b2226b8e046a777f88609c6ce11 31-Jul-2008 Ceki Gulcu <ceki@qos.ch> - add support for array values in parameters

For example,

log.debug("a:{},i:{}", "A", new int[] {1, 2}});
will print as "a:A,i:[1, 2]" instead of "a:A,i:[I@6ca1c" as previously

log.debug("a:{},b:{},i:{},", new Object[] {"A", "B", new int[] {1, 2}});
will print as "a:A,b:B,i:[1, 2]" instead of "a:A,b:B,i:[I@90c78" as previously

This enhancement was proposed by "lizongbo"
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
d2d892c9d045379ab823161942b7613311d95e36 27-May-2008 Ceki Gulcu <ceki@qos.ch> - fixed bug 78. If the argument array passed
to a Logger printing method (debug, info, etc.) was null, a NullPointerException
was thrown. With the correction, the messagePattern is returned as is, without parameter
substitution.
- updated javadocs
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
fb4fe9c580298abd73b0f3963c723730fb60bd66 29-Jan-2008 Ceki Gulcu <ceki@qos.ch> - fixing bug 61.
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java
86a125184fdf6b1981f34216b955aed35bbc61cd 16-Feb-2007 Sebastien Pennec <sebastien@qos.ch> Moved BasicMarker.java, BasicMarkerTest.java, BasicMarkerFactory.java, MarkerIgnoringBase.java, MessageFormatter.java and Util.java to the org.slf4j.helpers package.
Updated other modules classes accordingly
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterTest.java