Interface SecondLevelCacheLogger

All Superinterfaces:
org.jboss.logging.BasicLogger

@MessageLogger(projectCode="HHH") @ValidIdRange(min=90001001, max=90002000) @Internal public interface SecondLevelCacheLogger extends org.jboss.logging.BasicLogger
  • Field Details

  • Method Details

    • attemptToStartAlreadyStartedCacheProvider

      @LogMessage(level=WARN) @Message(value="Attempt to start an already-started RegionFactory, probably because a SessionFactory was not closed. Using previously created RegionFactory.", id=90001001) void attemptToStartAlreadyStartedCacheProvider()
    • attemptToStopAlreadyStoppedCacheProvider

      @LogMessage(level=WARN) @Message(value="Attempt to stop an already-stopped JCacheRegionFactory.", id=90001002) void attemptToStopAlreadyStoppedCacheProvider()
    • readOnlyCachingMutableEntity

      @LogMessage(level=WARN) @Message(value="Read-only caching was requested for mutable entity [%s]", id=90001003) void readOnlyCachingMutableEntity(String entity)
    • readOnlyCachingMutableNaturalId

      @LogMessage(level=WARN) @Message(value="Read-only caching was requested for entity [%s] with mutable natural id", id=90001004) void readOnlyCachingMutableNaturalId(String entity)
    • softLockedCacheExpired

      @LogMessage(level=INFO) @Message(value="A soft-locked cache entry in region [%s] with key [%s] was expired by the underlying cache. If this happens regularly, consider increasing the cache timeouts and/or capacity limits.", id=90001005) void softLockedCacheExpired(String regionName, Object key)
    • missingCacheCreated

      @LogMessage(level=WARN) @Message(value="Missing cache region [%1$s] was created with provider-specific default policies. Explicitly configure the region and its policies, or disable this warning by setting \'%2$s\' to \'%3$s\'.", id=90001006) void missingCacheCreated(String regionName, String configurationPropertyToDisableKey, String configurationPropertyToDisableValue)
    • usingLegacyCacheName

      @LogMessage(level=WARN) @Message(value="Using legacy cache name [%2$s] because configuration could not be found for cache [%1$s]. Update configuration to rename cache [%2$s] to [%1$s].", id=90001007) void usingLegacyCacheName(String currentName, String legacyName)
    • nonStandardSupportForAccessType

      @LogMessage(level=WARN) @Message(value="Cache region [%1$s] has the access type \'%2$s\' which is not supported by [%3$s]. Ensure cache implementation supports JTA transactions.", id=90001008) void nonStandardSupportForAccessType(String regionName, String accessType, String regionFactoryClass)
    • cachingQueryResults

      @LogMessage(level=TRACE) @Message(value="Caching query results in region \'%s\' with timestamp %s", id=90001009) void cachingQueryResults(String regionName, long timestamp)
    • checkingCachedQueryResults

      @LogMessage(level=TRACE) @Message(value="Checking cached query results in region \'%s\'", id=90001010) void checkingCachedQueryResults(String regionName)
    • queryResultsNotFound

      @LogMessage(level=TRACE) @Message(value="Query results were not found in cache", id=90001011) void queryResultsNotFound()
    • cachedQueryResultsStale

      @LogMessage(level=TRACE) @Message(value="Cached query results were stale", id=90001012) void cachedQueryResultsStale()
    • returningCachedQueryResults

      @LogMessage(level=TRACE) @Message(value="Returning cached query results", id=90001014) void returningCachedQueryResults()
    • evictingEntityCache

      @LogMessage(level=TRACE) @Message(value="Evicting entity second-level cache: %s", id=90001015) void evictingEntityCache(String entityInfo)
    • evictingEntityCacheByRole

      @LogMessage(level=TRACE) @Message(value="Evicting entity second-level cache: %s", id=90001016) void evictingEntityCacheByRole(String role)
    • evictingNaturalIdCache

      @LogMessage(level=TRACE) @Message(value="Evicting natural id cache: %s", id=90001017) void evictingNaturalIdCache(String role)
    • evictingCollectionCache

      @LogMessage(level=TRACE) @Message(value="Evicting collection second-level cache: %s", id=90001018) void evictingCollectionCache(String collectionInfo)
    • evictingCollectionCacheByRole

      @LogMessage(level=TRACE) @Message(value="Evicting collection second-level cache: %s", id=90001019) void evictingCollectionCacheByRole(String role)
    • autoEvictingCollectionCache

      @LogMessage(level=TRACE) @Message(value="Auto-evicting collection from second-level cache: %s (since \'hibernate.cache.auto_evict_collection_cache\' is enabled)", id=90001025) void autoEvictingCollectionCache(String collectionInfo)
    • autoEvictingCollectionCacheByRole

      @LogMessage(level=TRACE) @Message(value="Auto-evicting collection from second-level cache: %s (since \'hibernate.cache.auto_evict_collection_cache\' is enabled)", id=90001026) void autoEvictingCollectionCacheByRole(String collectionRole)
    • evictingQueryCacheRegion

      @LogMessage(level=TRACE) @Message(value="Evicting query cache region: %s", id=90001020) void evictingQueryCacheRegion(String regionName)
    • evictingAllQueryRegions

      @LogMessage(level=TRACE) @Message(value="Evicting cache of all query regions", id=90001021) void evictingAllQueryRegions()
    • preInvalidatingSpace

      @LogMessage(level=TRACE) @Message(value="Pre-invalidating space [%s], timestamp: %s", id=90001022) void preInvalidatingSpace(String space, Long timestamp)
    • invalidatingSpace

      @LogMessage(level=TRACE) @Message(value="Invalidating space [%s], timestamp: %s", id=90001023) void invalidatingSpace(String space, Long timestamp)
    • lastUpdateTimestampForSpace

      @LogMessage(level=TRACE) @Message(value="[%s] last update timestamp: %s, result set timestamp: %s", id=90001024) void lastUpdateTimestampForSpace(String space, Long lastUpdate, Long timestamp)