/* * JBoss, Home of Professional Open Source. * Copyright 2000 - 2011, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.loaders.bdbje.logging; import org.jboss.logging.Cause; import org.jboss.logging.LogMessage; import org.jboss.logging.Message; import org.jboss.logging.MessageLogger; import static org.jboss.logging.Logger.Level.*; /** * Log abstraction for the bdbje cache store. For this module, message ids * ranging from 2001 to 3000 inclusively have been reserved. * * @author Galder ZamarreƱo * @since 5.0 */ @MessageLogger(projectCode = "ISPN") public interface Log extends org.infinispan.util.logging.Log { @LogMessage(level = ERROR) @Message(value = "Error closing database", id = 2001) void errorClosingDatabase(@Cause Exception e); @LogMessage(level = ERROR) @Message(value = "Error closing catalog", id = 2002) void errorClosingCatalog(@Cause Exception e); @LogMessage(level = ERROR) @Message(value = "Error rolling back transaction", id = 2003) void rollingBackAfterError(@Cause Exception e); @LogMessage(level = WARN) @Message(value = "Expected to write %s records, but wrote %s", id = 2004) void unexpectedNumberRecordsWritten(long recordCount, int recordWritten); }