/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., 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.wildfly.clustering.server.logging; import static org.jboss.logging.Logger.Level.ERROR; import static org.jboss.logging.Logger.Level.INFO; import static org.jboss.logging.Logger.Level.WARN; import java.util.Collection; import java.util.Map; import java.util.Set; import org.infinispan.notifications.cachelistener.event.Event; import org.jboss.logging.BasicLogger; import org.jboss.logging.Logger; import org.jboss.logging.annotations.Cause; import org.jboss.logging.annotations.LogMessage; import org.jboss.logging.annotations.Message; import org.jboss.logging.annotations.MessageLogger; import org.jboss.msc.service.StartException; import org.wildfly.clustering.group.Node; /** * @author <a href="mailto:pferraro@redhat.com">Paul Ferraro</a> * @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a> */ @MessageLogger(projectCode = "WFLYCLSV", length = 4) public interface ClusteringServerLogger extends BasicLogger { String ROOT_LOGGER_CATEGORY = "org.wildfly.clustering.server"; /** * The root logger. */ ClusteringServerLogger ROOT_LOGGER = Logger.getMessageLogger(ClusteringServerLogger.class, ROOT_LOGGER_CATEGORY); @LogMessage(level = INFO) @Message(id = 1, value = "This node will now operate as the singleton provider of the %s service") void startSingleton(String service); @LogMessage(level = INFO) @Message(id = 2, value = "This node will no longer operate as the singleton provider of the %s service") void stopSingleton(String service); @LogMessage(level = INFO) @Message(id = 3, value = "%s elected as the singleton provider of the %s service") void elected(String node, String service); @Message(id = 4, value = "No response received from master node of the %s service, retrying...") IllegalStateException noResponseFromMaster(String service); @LogMessage(level = ERROR) @Message(id = 5, value = "Failed to start %s service") void serviceStartFailed(@Cause StartException e, String service); @LogMessage(level = WARN) @Message(id = 6, value = "Failed to reach quorum of %2$d for %1$s service. No singleton master will be elected.") void quorumNotReached(String service, int quorum); @LogMessage(level = INFO) @Message(id = 7, value = "Just reached required quorum of %2$d for %1$s service. If this cluster loses another member, no node will be chosen to provide this service.") void quorumJustReached(String service, int quorum); @Message(id = 8, value = "Detected multiple primary providers for %s service: %s") IllegalArgumentException multiplePrimaryProvidersDetected(String serviceName, Collection<Node> nodes); @Message(id = 9, value = "Singleton service %s is not started.") IllegalStateException notStarted(String serviceName); @LogMessage(level = WARN) @Message(id = 10, value = "Failed to purge %s/%s registry of old registry entries for: %s") void registryPurgeFailed(@Cause Throwable e, String containerName, String cacheName, Collection<Node> nodes); @LogMessage(level = WARN) @Message(id = 11, value = "Failed to notify %s/%s registry listener of %s(%s) event") void registryListenerFailed(@Cause Throwable e, String containerName, String cacheName, Event.Type type, Map<?, ?> entries); @LogMessage(level = WARN) @Message(id = 12, value = "Failed to notify %s/%s service provider registration listener of new providers: %s") void serviceProviderRegistrationListenerFailed(@Cause Throwable e, String containerName, String cacheName, Set<Node> providers); @LogMessage(level = WARN) @Message(id = 13, value = "No node was elected as the singleton provider of the %s service") void noPrimaryElected(String service); @Message(id = 14, value = "Specified quorum %d must be greater than zero") IllegalArgumentException invalidQuorum(int quorum); @LogMessage(level = WARN) @Message(id = 15, value = "Failed to restore local %s/%s registry entry following network partititon merge") void failedToRestoreLocalRegistryEntry(@Cause Throwable cause, String containerName, String cacheName); }