Ignore:
Timestamp:
Mar 21, 2014, 12:32:41 PM (10 years ago)
Author:
casties
Branch:
default
Message:

change logging to java.util.logging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorTags.java

    r70 r75  
    6464    @Get("json")
    6565    public Representation doGetJSON(Representation entity) {
    66         logger.debug("AnnotatorGroups doGetJSON!");
     66        logger.fine("AnnotatorGroups doGetJSON!");
    6767        setCorsHeaders();
    6868
     
    7070        // String id = decodeJsonId(jsonId);
    7171        String id = jsonId;
    72         logger.debug("annotation-id=" + id);
     72        logger.fine("annotation-id=" + id);
    7373
    7474        if (id == null) {
     
    126126            return null;
    127127        }
    128         logger.debug("sending:");
    129         logger.debug(result);
     128        logger.fine("sending:");
     129        logger.fine(result.toString());
    130130        return new JsonRepresentation(result);
    131131    }
Note: See TracChangeset for help on using the changeset viewer.