src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/WSHttpHandler.java

changeset 368
0989ad8c0860
parent 286
f50545b5e2f1
child 637
9c07ef4934dd
     1.1 --- a/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/WSHttpHandler.java	Thu Apr 04 19:05:24 2013 -0700
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/WSHttpHandler.java	Tue Apr 09 14:51:13 2013 +0100
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -72,7 +72,7 @@
    1.11      public void handle(HttpExchange msg) {
    1.12          try {
    1.13              if (fineTraceEnabled) {
    1.14 -                LOGGER.fine("Received HTTP request:"+msg.getRequestURI());
    1.15 +                LOGGER.log(Level.FINE, "Received HTTP request:{0}", msg.getRequestURI());
    1.16              }
    1.17              if (executor != null) {
    1.18                  // Use application's Executor to handle request. Application may
    1.19 @@ -90,7 +90,7 @@
    1.20          WSHTTPConnection con = new ServerConnectionImpl(adapter,msg);
    1.21          try {
    1.22              if (fineTraceEnabled) {
    1.23 -                LOGGER.fine("Received HTTP request:"+msg.getRequestURI());
    1.24 +                LOGGER.log(Level.FINE, "Received HTTP request:{0}", msg.getRequestURI());
    1.25              }
    1.26              String method = msg.getRequestMethod();
    1.27              if(method.equals(GET_METHOD) || method.equals(POST_METHOD) || method.equals(HEAD_METHOD)

mercurial