static <T1,T2> Event2<T1,T2> |
Events.debug(Class<?> source,
String key,
TypeHint<T1> t1,
TypeHint<T2> t2) |
Creates a new DEBUG log event requiring two arguments of types T1
and T2 given by the type hints t1 and t2
respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.debug(Class<?> source,
String key,
Class<T1> t1,
Class<T2> t2) |
Creates a new DEBUG log event requiring two arguments of types T1
and T2 given by classes t1 and t2 respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.error(Class<?> source,
String key,
TypeHint<T1> t1,
TypeHint<T2> t2) |
Creates a new ERROR log event requiring two arguments of types T1
and T2 given by the type hints t1 and t2
respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.error(Class<?> source,
String key,
Class<T1> t1,
Class<T2> t2) |
Creates a new ERROR log event requiring two arguments of types T1
and T2 given by classes t1 and t2 respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.info(Class<?> source,
String key,
TypeHint<T1> t1,
TypeHint<T2> t2) |
Creates a new INFO log event requiring two arguments of types T1
and T2 given by the type hints t1 and t2
respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.info(Class<?> source,
String key,
Class<T1> t1,
Class<T2> t2) |
Creates a new INFO log event requiring two arguments of types T1
and T2 given by classes t1 and t2 respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.trace(Class<?> source,
String key,
TypeHint<T1> t1,
TypeHint<T2> t2) |
Creates a new TRACE log event requiring two arguments of types T1
and T2 given by the type hints t1 and t2
respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.trace(Class<?> source,
String key,
Class<T1> t1,
Class<T2> t2) |
Creates a new TRACE log event requiring two arguments of types T1
and T2 given by classes t1 and t2 respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.warn(Class<?> source,
String key,
TypeHint<T1> t1,
TypeHint<T2> t2) |
Creates a new WARN log event requiring two arguments of types T1
and T2 given by the type hints t1 and t2
respectively.
|
static <T1,T2> Event2<T1,T2> |
Events.warn(Class<?> source,
String key,
Class<T1> t1,
Class<T2> t2) |
Creates a new WARN log event requiring two arguments of types T1
and T2 given by classes t1 and t2 respectively.
|