-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
hopper
-
x86
-
windows_nt
-
Verified
Name: rmT116609 Date: 03/12/2002
FULL PRODUCT VERSION :
java version "1.4.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
FULL OPERATING SYSTEM VERSION :
winnt4.0 simplified chinese edition service pack 6
A DESCRIPTION OF THE PROBLEM :
There is a translation mistake in method java.util.logging.Logger.severe(String msg), the method should output SEVERE: msg. But in simplified chinese environment it output SERVER(in smplified chinese): msg.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
import java.util.logging.*;
public class Logging {
public static void main(String[] args) {
Logger log = Logger.getLogger("global");
log.severe("And have buttered scones for tea");
}
}
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.util.logging.*;
public class Logging {
public static void main(String[] args) {
Logger log = Logger.getLogger("global");
log.severe("And have buttered scones for tea");
}
}
---------- END SOURCE ----------
(Review ID: 144034)
======================================================================