Commit f8f13ba4 authored by yanzg's avatar yanzg

修复异常提醒,从而正确的跟踪异常信息

parent 371515bb
No related merge requests found
......@@ -3,6 +3,8 @@ package base;
import com.yanzuoguang.util.base.ColorUtils;
import org.junit.Test;
import java.util.Arrays;
import java.util.List;
import java.util.function.Consumer;
public class TestDemo {
......@@ -20,4 +22,14 @@ public class TestDemo {
System.out.println(ColorUtils.colorize("颜佐光", ColorUtils.Color.RED)); ;
System.out.println(ColorUtils.colorize("颜佐光", ColorUtils.Color.GREEN)); ;
}
@Test
public void testFormat(){
String msg ="美团:%s header:%s 内容:%s ";
List<Object> args = Arrays.asList("地址", "头部", "内鹅绒");
String format = String.format(msg, args.toArray());
System.out.println(format);
// String format1 = String.format(msg, args);
// System.out.println(format1);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment