6ed96ca40b
This is the next part of the migration to Flogger. This change migrates all remaining classes Flogger. This means all classes in Gerrit core now use Flogger. During this migration we try to make the log statements more consistent: - avoid string concatenation - avoid usage of String.format(...) The visibility of the slf4j library is restricted to plugins and jgit now. This avoids that we accidentally add new dependencies to slf4j. Change-Id: Ide573327315a15cde69b68b5f27934deeb790d37 Signed-off-by: Edwin Kempin <ekempin@google.com>
17 lines
451 B
Python
17 lines
451 B
Python
java_library(
|
|
name = "gwtdebug",
|
|
srcs = glob(["src/main/java/**/*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/gerrit/pgm",
|
|
"//java/com/google/gerrit/pgm/util",
|
|
"//java/com/google/gerrit/util/cli",
|
|
"//lib/flogger:api",
|
|
"//lib/gwt:dev",
|
|
"//lib/jetty:server",
|
|
"//lib/jetty:servlet",
|
|
"//lib/jetty:servlets",
|
|
"//lib/log:log4j",
|
|
],
|
|
)
|