1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html#License
3/**
4 *******************************************************************************
5 * Copyright (C) 2000-2004, International Business Machines Corporation and    *
6 * others. All Rights Reserved.                                                *
7 *******************************************************************************
8 */
9package com.ibm.icu.dev.test;
10
11public interface TestLog {
12
13//    /**
14//     * Adds given string to the log if we are in verbose mode.
15//     */
16//    void log(String message);
17//
18//    void logln(String message);
19//
20//    /**
21//     * Report an error
22//     */
23//    void err(String message);
24//
25//    void errln(String message);
26//
27//    /**
28//     * Warn about missing tests or data.
29//     */
30//    void warn(String message);
31//
32//    void warnln(String message);
33
34
35    public static final int LOG = 0;
36    public static final int WARN = 1;
37    public static final int ERR = 2;
38
39    //public static void msg(String message, int level, boolean incCount, boolean newln);
40}
41