Package org.infinispan.stats.logging
Interface Log
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
- All Known Implementing Classes:
Log_$logger
@MessageLogger(projectCode="ISPN") public interface Log extends org.jboss.logging.BasicLogger
The JBoss Logging interface which defined the logging methods for the extended statistics module. The id range for this is 25001-26000- Since:
- 6.0
- Author:
- Pedro Ruivo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
extendedStatisticNotFoundForPercentile(ExtendedStatistic statistic, Throwable cause)
void
markUnexistingTransactionAsWriteTransaction(String transaction)
void
outcomeOnUnexistingTransaction(String transaction, String outcome)
void
prepareOnUnexistingTransaction(String transaction)
void
replaceComponent(String componentName, Object oldComponent, Object newComponent)
void
replaceComponents()
void
startExtendedStatisticInterceptor()
void
startStreamSummaryInterceptor()
void
stopStreamSummaryInterceptor()
void
unableToCalculateLocalExecutionTimeWithoutContention(Throwable throwable)
void
unableToCopyValue(ExtendedStatistic from, ExtendedStatistic to, Throwable cause)
void
unableToGetPercentile(int percentile, PercentileStatistic statistic, Throwable cause)
void
unableToGetStatistic(ExtendedStatistic statistic, Throwable cause)
-
Methods inherited from interface org.jboss.logging.BasicLogger
debug, debug, debug, debug, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugv, debugv, debugv, debugv, debugv, debugv, debugv, debugv, error, error, error, error, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorv, errorv, errorv, errorv, errorv, errorv, errorv, errorv, fatal, fatal, fatal, fatal, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, info, info, info, info, infof, infof, infof, infof, infof, infof, infof, infof, infov, infov, infov, infov, infov, infov, infov, infov, isDebugEnabled, isEnabled, isInfoEnabled, isTraceEnabled, log, log, log, log, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, trace, trace, trace, trace, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracev, tracev, tracev, tracev, tracev, tracev, tracev, tracev, warn, warn, warn, warn, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnv, warnv, warnv, warnv, warnv, warnv, warnv, warnv
-
-
-
-
Method Detail
-
extendedStatisticNotFoundForPercentile
@LogMessage(level=WARN) @Message(id=25001, value="Extended Statistic [%s] not found while tried to add a percentile sample.") void extendedStatisticNotFoundForPercentile(ExtendedStatistic statistic, @Cause Throwable cause)
-
markUnexistingTransactionAsWriteTransaction
@LogMessage(level=WARN) @Message(id=25002, value="Trying to mark the transaction [%s] as write transaction but no transaction is associated.") void markUnexistingTransactionAsWriteTransaction(String transaction)
-
prepareOnUnexistingTransaction
@LogMessage(level=WARN) @Message(id=25003, value="Trying to prepare transaction [%s] but no transaction is associated.") void prepareOnUnexistingTransaction(String transaction)
-
outcomeOnUnexistingTransaction
@LogMessage(level=WARN) @Message(id=25004, value="Trying to set the transaction [%s] outcome to %s but no transaction is associated.") void outcomeOnUnexistingTransaction(String transaction, String outcome)
-
unableToCalculateLocalExecutionTimeWithoutContention
@LogMessage(level=WARN) @Message(id=25005, value="Unable calculate local execution time without contention.") void unableToCalculateLocalExecutionTimeWithoutContention(@Cause Throwable throwable)
-
unableToCopyValue
@LogMessage(level=WARN) @Message(id=25006, value="Unable to copy value from %s to %s.") void unableToCopyValue(ExtendedStatistic from, ExtendedStatistic to, @Cause Throwable cause)
-
unableToGetStatistic
@LogMessage(level=WARN) @Message(id=25007, value="Unable to get extended statistic %s.") void unableToGetStatistic(ExtendedStatistic statistic, @Cause Throwable cause)
-
unableToGetPercentile
@LogMessage(level=WARN) @Message(id=25008, value="Unable to get %s-th percentile for %s.") void unableToGetPercentile(int percentile, PercentileStatistic statistic, @Cause Throwable cause)
-
replaceComponents
@LogMessage(level=INFO) @Message(id=25009, value="Replacing original components.") void replaceComponents()
-
replaceComponent
@LogMessage(level=INFO) @Message(id=25010, value="Replacing %s. old=[%s] new=[%s].") void replaceComponent(String componentName, Object oldComponent, Object newComponent)
-
startExtendedStatisticInterceptor
@LogMessage(level=INFO) @Message(id=25011, value="Starting ExtendedStatisticInterceptor.") void startExtendedStatisticInterceptor()
-
startStreamSummaryInterceptor
@LogMessage(level=INFO) @Message(id=25012, value="Starting CacheUsageInterceptor.") void startStreamSummaryInterceptor()
-
stopStreamSummaryInterceptor
@LogMessage(level=INFO) @Message(id=25013, value="Stopping CacheUsageInterceptor.") void stopStreamSummaryInterceptor()
-
-