blob: fff5ebd280ec379d9a1a6d83bcf556bc0b5ef974 [file] [log] [blame]
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.requestfactory.server;
import com.google.gwt.logging.server.JsonLogRecordServerUtil;
import com.google.gwt.logging.shared.SerializableLogRecord;
import java.util.logging.LogRecord;
import java.util.logging.Logger;
/**
* Server side object that handles log messages sent by
* {@link RequestFactoryLogHandler}.
*/
public class Logging {
private static Logger logger = Logger.getLogger(Logging.class.getName());
public static Boolean logMessage(String serializedLogRecordString) {
SerializableLogRecord slr =
JsonLogRecordServerUtil.serializableLogRecordFromJson(
serializedLogRecordString);
LogRecord lr = slr.getLogRecord();
if (lr == null) {
return false;
}
logger.log(lr);
return true;
}
private Long id = 0L;
private Integer version = 0;
public Long getId() {
return this.id;
}
public Integer getVersion() {
return this.version;
}
public void setId(Long id) {
this.id = id;
}
public void setVersion(Integer version) {
this.version = version;
}
}