mirror of
				https://e.coding.net/circlecloud/YumCore.git
				synced 2025-11-03 23:06:02 +00:00 
			
		
		
		
	
							
								
								
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							@@ -4,7 +4,7 @@
 | 
				
			|||||||
    <modelVersion>4.0.0</modelVersion>
 | 
					    <modelVersion>4.0.0</modelVersion>
 | 
				
			||||||
    <groupId>pw.yumc</groupId>
 | 
					    <groupId>pw.yumc</groupId>
 | 
				
			||||||
    <artifactId>YumCore</artifactId>
 | 
					    <artifactId>YumCore</artifactId>
 | 
				
			||||||
    <version>1.8.2</version>
 | 
					    <version>1.8.3</version>
 | 
				
			||||||
    <build>
 | 
					    <build>
 | 
				
			||||||
        <finalName>${project.artifactId}</finalName>
 | 
					        <finalName>${project.artifactId}</finalName>
 | 
				
			||||||
        <plugins>
 | 
					        <plugins>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,7 +115,9 @@ public class Log {
 | 
				
			|||||||
     *            参数
 | 
					     *            参数
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public static void d(String msg, Object... object) {
 | 
					    public static void d(String msg, Object... object) {
 | 
				
			||||||
        d(String.format(msg, object));
 | 
					        if (debug) {
 | 
				
			||||||
 | 
					            logger.info(String.format(msg, object));
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
@@ -166,7 +168,9 @@ public class Log {
 | 
				
			|||||||
     *            参数
 | 
					     *            参数
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public static void fd(String msg, Object... object) {
 | 
					    public static void fd(String msg, Object... object) {
 | 
				
			||||||
        fd(String.format(msg, object));
 | 
					        if (fullDebug) {
 | 
				
			||||||
 | 
					            logger.info("[DEBUG] " + String.format(msg, object));
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
@@ -301,7 +305,8 @@ public class Log {
 | 
				
			|||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * Log a SEVERE message.
 | 
					     * Log a SEVERE message.
 | 
				
			||||||
     * <p>
 | 
					     * <p>
 | 
				
			||||||
     * If the logger is currently enabled for the SEVERE message level then the given message is forwarded to all the registered output Handler objects.
 | 
					     * If the logger is currently enabled for the SEVERE message level then the
 | 
				
			||||||
 | 
					     * given message is forwarded to all the registered output Handler objects.
 | 
				
			||||||
     *
 | 
					     *
 | 
				
			||||||
     * @param msg
 | 
					     * @param msg
 | 
				
			||||||
     *            The string message (or a key in the message catalog)
 | 
					     *            The string message (or a key in the message catalog)
 | 
				
			||||||
@@ -367,7 +372,7 @@ public class Log {
 | 
				
			|||||||
     *            参数
 | 
					     *            参数
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public static void w(String string, Object... objects) {
 | 
					    public static void w(String string, Object... objects) {
 | 
				
			||||||
        logger.warning(String.format(string, objects));
 | 
					        w(String.format(string, objects));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user