Package org.infinispan.scripting.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
Log abstraction for the Scripting module. For this module, message ids ranging from 27501 to 28000 inclusively have been reserved.- Since:
- 7.2
- Author:
- Tristan Tarrant
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IllegalArgumentException
cannotInvokeScriptDirectly(String scriptName, String property)
IllegalStateException
distributedTaskNeedCacheInBinding(String scriptName)
void
jmxRegistrationFailed()
void
jmxUnregistrationFailed()
IllegalArgumentException
noEngineForScript(String name)
CacheException
noNamedScript(String name)
IllegalArgumentException
noScriptEngineForScript(String name)
IllegalArgumentException
parametersNotArray()
CacheException
scriptCompilationException(Throwable t, String name)
CacheException
scriptExecutionError(Throwable t)
IllegalArgumentException
scriptsCanOnlyAccessNamedCaches()
CacheException
unknownScriptProperty(String value)
-
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
-
jmxRegistrationFailed
@LogMessage(level=ERROR) @Message(value="Could not register interpreter MBean", id=27501) void jmxRegistrationFailed()
-
jmxUnregistrationFailed
@LogMessage(level=ERROR) @Message(value="Could not unregister interpreter MBean", id=27502) void jmxUnregistrationFailed()
-
scriptExecutionError
@Message(value="Script execution error", id=27503) CacheException scriptExecutionError(@Cause Throwable t)
-
scriptCompilationException
@Message(value="Compiler error for script \'%s\'", id=27504) CacheException scriptCompilationException(@Cause Throwable t, String name)
-
noNamedScript
@Message(value="No script named \'%s\'", id=27505) CacheException noNamedScript(String name)
-
unknownScriptProperty
@Message(value="Unknown script mode: \'%s\'", id=27506) CacheException unknownScriptProperty(String value)
-
noScriptEngineForScript
@Message(value="Cannot find an appropriate script engine for \'%s\'", id=27507) IllegalArgumentException noScriptEngineForScript(String name)
-
cannotInvokeScriptDirectly
@Message(value="Script \'%s\' cannot be invoked directly since it specifies mode \'%s\'", id=27508) IllegalArgumentException cannotInvokeScriptDirectly(String scriptName, String property)
-
distributedTaskNeedCacheInBinding
@Message(value="Distributed script \'%s\' invoked without a cache binding", id=27509) IllegalStateException distributedTaskNeedCacheInBinding(String scriptName)
-
noEngineForScript
@Message(value="Cannot find an appropriate script engine for script \'%s\'", id=27510) IllegalArgumentException noEngineForScript(String name)
-
parametersNotArray
@Message(value="Script parameters must be declared using the array notation, e.g. [a,b,c]", id=27511) IllegalArgumentException parametersNotArray()
-
scriptsCanOnlyAccessNamedCaches
@Message(value="Scripts can only access named caches", id=27512) IllegalArgumentException scriptsCanOnlyAccessNamedCaches()
-
-