All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bizmda.log.monitor.PointUtil Maven / Gradle / Ivy

There is a newer version: 1.0.0.RC4
Show newest version
package com.bizmda.log.monitor;

import lombok.extern.slf4j.Slf4j;

/**
 * 日志埋点工具类
 *
 * @author zlt
 */
@Slf4j
public class PointUtil {
    private static final String MSG_PATTERN = "{}|{}|{}";

    private PointUtil() {
        throw new IllegalStateException("Utility class");
    }

    public static void info(String id, String type, String message) {
        log.info(MSG_PATTERN, id, type, message);
    }

    public static void debug(String id, String type, String message) {
        log.debug(MSG_PATTERN, id, type, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy