blob: 39e5d02496626d80c648a385f2d92116d0f00ae8 [file] [log] [blame]
Ceki Gulcu88c4c452009-12-03 19:16:42 +01001
2The slf4j-migrator aims to
3
4General limitations
5===================
6
7- the FATAL level is not supported.
8
9 This is limitation is not deemed serious because there are usually
10 very few log statements bearing the FATAL level.
11
12
Craig P. Motlin4b710c82013-12-14 19:01:57 -050013- if a method declares multiple loggers on the same line, the conversion will not be complete. Example:
Ceki Gulcu88c4c452009-12-03 19:16:42 +010014
15
16 public void someMethod(Log l1, Log l2) {
17 ...
18 }
19
20 will be converted as
21
22 public void someMethod(Log l1, Logger l2) {
23 ...
24 }
25
26
27When migrating from log4j
28=========================
29
30- Since NDC is not supported by SLF4J, the migrator cannot properly handle
31 NDC statements.
32
33- Calls to PropertyConfigurator or DomConfigurator cannot be migrated since
34 SLF4J the equivalents.