Explorar el Código

Fix the incorrect logic of handling the end separator of the log directory in LogBase (#1172)

master
于玉桔 Eric Zhao hace 5 años
padre
commit
24f8d75601
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/log/LogBase.java

+ 1
- 1
sentinel-core/src/main/java/com/alibaba/csp/sentinel/log/LogBase.java Ver fichero

@@ -95,7 +95,7 @@ public class LogBase {


logBaseDir = properties.getProperty(LOG_DIR) == null ? logBaseDir : properties.getProperty(LOG_DIR);
addSeparator(logBaseDir);
logBaseDir = addSeparator(logBaseDir);
File dir = new File(logBaseDir);
if (!dir.exists()) {
if (!dir.mkdirs()) {


Cargando…
Cancelar
Guardar