Просмотр исходного кода

Update logging.adoc

Fixed broken monospace by making it unconstrained.
mitm001 8 лет назад
Родитель
Сommit
29383fc590
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/docs/asciidoc/jme3/advanced/logging.adoc

+ 1 - 1
src/docs/asciidoc/jme3/advanced/logging.adoc

@@ -76,7 +76,7 @@ To deactivate the default logger for a release, you set the log level to only re
 Logger.getLogger(””).setLevel(Level.SEVERE);
 ----
 
-During development or a beta test, you can tune down the default logger, and set the log level to only report `warning`s:
+During development or a beta test, you can tune down the default logger, and set the log level to only report ``warning``s:
 
 [source,java]
 ----