Java Code Examples for com.alibaba.dubbo.common.logger.LoggerFactory#getLevel()

The following examples show how to use com.alibaba.dubbo.common.logger.LoggerFactory#getLevel() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LogsController.java    From open-capacity-platform with Apache License 2.0 6 votes vote down vote up
public boolean change(Map<String, Object> context) throws Exception {
    String contextLevel = (String) context.get("level");
    if (contextLevel == null || contextLevel.length() == 0) {
        context.put("message", getMessage("MissRequestParameters", "level"));
        return false;
    }
    if (!User.ROOT.equals(role)) {
        context.put("message", getMessage("HaveNoRootPrivilege"));
        return false;
    }
    Level level = Level.valueOf(contextLevel);
    if (level != LoggerFactory.getLevel()) {
        LoggerFactory.setLevel(level);
    }
    context.put("redirect", "/sysinfo/logs");
    return true;
}
 
Example 2
Source File: Logs.java    From dubbox with Apache License 2.0 6 votes vote down vote up
public boolean change(Map<String, Object> context) throws Exception {
    String contextLevel = (String)context.get("level");
    if (contextLevel == null || contextLevel.length() == 0) {
        context.put("message", getMessage("MissRequestParameters", "level"));
        return false;
    }
    if (! User.ROOT.equals(role)) {
       context.put("message", getMessage("HaveNoRootPrivilege"));
        return false;
    }
    Level level = Level.valueOf(contextLevel);
    if (level != LoggerFactory.getLevel()) {
        LoggerFactory.setLevel(level);
    }
    context.put("redirect", "/sysinfo/logs");
    return true;
}
 
Example 3
Source File: Logs.java    From dubbox-hystrix with Apache License 2.0 6 votes vote down vote up
public boolean change(Map<String, Object> context) throws Exception {
    String contextLevel = (String)context.get("level");
    if (contextLevel == null || contextLevel.length() == 0) {
        context.put("message", getMessage("MissRequestParameters", "level"));
        return false;
    }
    if (! User.ROOT.equals(role)) {
       context.put("message", getMessage("HaveNoRootPrivilege"));
        return false;
    }
    Level level = Level.valueOf(contextLevel);
    if (level != LoggerFactory.getLevel()) {
        LoggerFactory.setLevel(level);
    }
    context.put("redirect", "/sysinfo/logs");
    return true;
}
 
Example 4
Source File: Logs.java    From dubbo3 with Apache License 2.0 6 votes vote down vote up
public boolean change(Map<String, Object> context) throws Exception {
    String contextLevel = (String)context.get("level");
    if (contextLevel == null || contextLevel.length() == 0) {
        context.put("message", getMessage("MissRequestParameters", "level"));
        return false;
    }
    if (! User.ROOT.equals(role)) {
       context.put("message", getMessage("HaveNoRootPrivilege"));
        return false;
    }
    Level level = Level.valueOf(contextLevel);
    if (level != LoggerFactory.getLevel()) {
        LoggerFactory.setLevel(level);
    }
    context.put("redirect", "/sysinfo/logs");
    return true;
}
 
Example 5
Source File: Logs.java    From dubbox with Apache License 2.0 6 votes vote down vote up
public boolean change(Map<String, Object> context) throws Exception {
    String contextLevel = (String)context.get("level");
    if (contextLevel == null || contextLevel.length() == 0) {
        context.put("message", getMessage("MissRequestParameters", "level"));
        return false;
    }
    if (! User.ROOT.equals(role)) {
       context.put("message", getMessage("HaveNoRootPrivilege"));
        return false;
    }
    Level level = Level.valueOf(contextLevel);
    if (level != LoggerFactory.getLevel()) {
        LoggerFactory.setLevel(level);
    }
    context.put("redirect", "/sysinfo/logs");
    return true;
}
 
Example 6
Source File: Logs.java    From dubbox with Apache License 2.0 6 votes vote down vote up
public boolean change(Map<String, Object> context) throws Exception {
    String contextLevel = (String)context.get("level");
    if (contextLevel == null || contextLevel.length() == 0) {
        context.put("message", getMessage("MissRequestParameters", "level"));
        return false;
    }
    if (! User.ROOT.equals(role)) {
       context.put("message", getMessage("HaveNoRootPrivilege"));
        return false;
    }
    Level level = Level.valueOf(contextLevel);
    if (level != LoggerFactory.getLevel()) {
        LoggerFactory.setLevel(level);
    }
    context.put("redirect", "/sysinfo/logs");
    return true;
}
 
Example 7
Source File: LogsController.java    From open-capacity-platform with Apache License 2.0 5 votes vote down vote up
@RequestMapping("")
public String index(HttpServletRequest request, HttpServletResponse response, Model model) throws Exception {
    prepare(request, response, model, "index", "logs");
    long size;
    String content;
    String modified;
    File file = LoggerFactory.getFile();
    if (file != null && file.exists()) {
        FileInputStream fis = new FileInputStream(file);
        FileChannel channel = fis.getChannel();
        size = channel.size();
        ByteBuffer bb;
        if (size <= SHOW_LOG_LENGTH) {
            bb = ByteBuffer.allocate((int) size);
            channel.read(bb, 0);
        } else {
            int pos = (int) (size - SHOW_LOG_LENGTH);
            bb = ByteBuffer.allocate(SHOW_LOG_LENGTH);
            channel.read(bb, pos);
        }
        bb.flip();
        content = new String(bb.array()).replace("<", "&lt;").replace(">", "&gt;");
        modified = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(file.lastModified()));
    } else {
        size = 0;
        content = "";
        modified = "Not exist";
    }
    Level level = LoggerFactory.getLevel();
    model.addAttribute("name", file == null ? "" : file.getAbsoluteFile());
    model.addAttribute("size", String.valueOf(size));
    model.addAttribute("level", level == null ? "" : level);
    model.addAttribute("modified", modified);
    model.addAttribute("content", content);
    return "sysinfo/screen/logs/index";
}
 
Example 8
Source File: Logs.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public void index(Map<String, Object> context) throws Exception {
    long size;
    String content;
    String modified;
    File file = LoggerFactory.getFile();
    if (file != null && file.exists()) {
        FileInputStream fis = new FileInputStream(file);
        FileChannel channel = fis.getChannel();
        size = channel.size();
        ByteBuffer bb;
        if (size <= SHOW_LOG_LENGTH) {
            bb = ByteBuffer.allocate((int) size);
            channel.read(bb, 0);
        } else {
            int pos = (int) (size - SHOW_LOG_LENGTH);
            bb = ByteBuffer.allocate(SHOW_LOG_LENGTH);
            channel.read(bb, pos);
        }
        bb.flip();
        content = new String(bb.array()).replace("<", "&lt;").replace(">", "&gt;");
        modified = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(file.lastModified()));
    } else {
        size = 0;
        content = "";
        modified = "Not exist";
    }
    Level level = LoggerFactory.getLevel();
    context.put("name", file == null ? "" : file.getAbsoluteFile());
    context.put("size", String.valueOf(size));
    context.put("level", level == null ? "" : level);
    context.put("modified", modified);
    context.put("content", content);
}
 
Example 9
Source File: Logs.java    From dubbox-hystrix with Apache License 2.0 5 votes vote down vote up
public void index(Map<String, Object> context) throws Exception {
    long size;
    String content;
    String modified;
    File file = LoggerFactory.getFile();
    if (file != null && file.exists()) {
        FileInputStream fis = new FileInputStream(file);
        FileChannel channel = fis.getChannel();
        size = channel.size();
        ByteBuffer bb;
        if (size <= SHOW_LOG_LENGTH) {
            bb = ByteBuffer.allocate((int) size);
            channel.read(bb, 0);
        } else {
            int pos = (int) (size - SHOW_LOG_LENGTH);
            bb = ByteBuffer.allocate(SHOW_LOG_LENGTH);
            channel.read(bb, pos);
        }
        bb.flip();
        content = new String(bb.array()).replace("<", "&lt;").replace(">", "&gt;");
        modified = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(file.lastModified()));
    } else {
        size = 0;
        content = "";
        modified = "Not exist";
    }
    Level level = LoggerFactory.getLevel();
    context.put("name", file == null ? "" : file.getAbsoluteFile());
    context.put("size", String.valueOf(size));
    context.put("level", level == null ? "" : level);
    context.put("modified", modified);
    context.put("content", content);
}
 
Example 10
Source File: Logs.java    From dubbo3 with Apache License 2.0 5 votes vote down vote up
public void index(Map<String, Object> context) throws Exception {
    long size;
    String content;
    String modified;
    File file = LoggerFactory.getFile();
    if (file != null && file.exists()) {
        FileInputStream fis = new FileInputStream(file);
        FileChannel channel = fis.getChannel();
        size = channel.size();
        ByteBuffer bb;
        if (size <= SHOW_LOG_LENGTH) {
            bb = ByteBuffer.allocate((int) size);
            channel.read(bb, 0);
        } else {
            int pos = (int) (size - SHOW_LOG_LENGTH);
            bb = ByteBuffer.allocate(SHOW_LOG_LENGTH);
            channel.read(bb, pos);
        }
        bb.flip();
        content = new String(bb.array()).replace("<", "&lt;").replace(">", "&gt;");
        modified = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(file.lastModified()));
    } else {
        size = 0;
        content = "";
        modified = "Not exist";
    }
    Level level = LoggerFactory.getLevel();
    context.put("name", file == null ? "" : file.getAbsoluteFile());
    context.put("size", String.valueOf(size));
    context.put("level", level == null ? "" : level);
    context.put("modified", modified);
    context.put("content", content);
}
 
Example 11
Source File: Logs.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public void index(Map<String, Object> context) throws Exception {
    long size;
    String content;
    String modified;
    File file = LoggerFactory.getFile();
    if (file != null && file.exists()) {
        FileInputStream fis = new FileInputStream(file);
        FileChannel channel = fis.getChannel();
        size = channel.size();
        ByteBuffer bb;
        if (size <= SHOW_LOG_LENGTH) {
            bb = ByteBuffer.allocate((int) size);
            channel.read(bb, 0);
        } else {
            int pos = (int) (size - SHOW_LOG_LENGTH);
            bb = ByteBuffer.allocate(SHOW_LOG_LENGTH);
            channel.read(bb, pos);
        }
        bb.flip();
        content = new String(bb.array()).replace("<", "&lt;").replace(">", "&gt;");
        modified = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(file.lastModified()));
    } else {
        size = 0;
        content = "";
        modified = "Not exist";
    }
    Level level = LoggerFactory.getLevel();
    context.put("name", file == null ? "" : file.getAbsoluteFile());
    context.put("size", String.valueOf(size));
    context.put("level", level == null ? "" : level);
    context.put("modified", modified);
    context.put("content", content);
}
 
Example 12
Source File: Logs.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public void index(Map<String, Object> context) throws Exception {
    long size;
    String content;
    String modified;
    File file = LoggerFactory.getFile();
    if (file != null && file.exists()) {
        FileInputStream fis = new FileInputStream(file);
        FileChannel channel = fis.getChannel();
        size = channel.size();
        ByteBuffer bb;
        if (size <= SHOW_LOG_LENGTH) {
            bb = ByteBuffer.allocate((int) size);
            channel.read(bb, 0);
        } else {
            int pos = (int) (size - SHOW_LOG_LENGTH);
            bb = ByteBuffer.allocate(SHOW_LOG_LENGTH);
            channel.read(bb, pos);
        }
        bb.flip();
        content = new String(bb.array()).replace("<", "&lt;").replace(">", "&gt;");
        modified = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(file.lastModified()));
    } else {
        size = 0;
        content = "";
        modified = "Not exist";
    }
    Level level = LoggerFactory.getLevel();
    context.put("name", file == null ? "" : file.getAbsoluteFile());
    context.put("size", String.valueOf(size));
    context.put("level", level == null ? "" : level);
    context.put("modified", modified);
    context.put("content", content);
}