aboutsummaryrefslogtreecommitdiffstats
path: root/vespalog/src/test/java/com/yahoo/log/TestUtil.java
blob: 918039699f4389f778fea3efe8c58fbd71eb9b21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.log;


import java.util.logging.LogRecord;

/**
 * @author gjoranv
 */
public class TestUtil {

    public static String formatWithVespaFormatter(LogRecord record) {
        return new VespaFormatter().format(record);
    }

}