Interface ProsperoLogger

All Superinterfaces:
org.jboss.logging.BasicLogger
All Known Implementing Classes:
ProsperoLogger_$logger

@MessageLogger(projectCode="PRSP") public interface ProsperoLogger extends org.jboss.logging.BasicLogger
  • Field Details

  • Method Details

    • historyDetails

      @LogMessage(level=INFO) @Message(id=1, value="Getting details of %s of %s") void historyDetails(String savedStateName, Path path)
    • listHistory

      @LogMessage(level=INFO) @Message(id=2, value="Listing history of %s") void listHistory(Path path)
    • revertStarted

      @LogMessage(level=INFO) @Message(id=3, value="Reverting %s to %s") void revertStarted(Path installationPath, String savedStateName)
    • revertCompleted

      @LogMessage(level=INFO) @Message(id=4, value="Reverted %s to %s") void revertCompleted(Path installationPath, String savedStateName)
    • revertCandidateStarted

      @LogMessage(level=INFO) @Message(id=5, value="Building revert candidate for %s") void revertCandidateStarted(Path installationPath)
    • revertCandidateCompleted

      @LogMessage(level=INFO) @Message(id=6, value="Revert candidate generated in %s") void revertCandidateCompleted(Path installationPath)
    • temporaryCandidateFolder

      @LogMessage(level=DEBUG) @Message(id=7, value="Created temporary candidate folder %s") void temporaryCandidateFolder(Path tempPath)
    • performUpdateStarted

      @LogMessage(level=INFO) @Message(id=8, value="Performing update of %s") void performUpdateStarted(Path installaPath)
    • noUpdatesFound

      @LogMessage(level=INFO) @Message(id=9, value="Aborting update - no updates found for %s") void noUpdatesFound(Path installationPath)
    • updateCandidateStarted

      @LogMessage(level=INFO) @Message(id=10, value="Building update candidate for %s") void updateCandidateStarted(Path installationPath)
    • updateCandidateCompleted

      @LogMessage(level=INFO) @Message(id=11, value="Update candidate generated in %s") void updateCandidateCompleted(Path installationPath)
    • checkingUpdates

      @LogMessage(level=INFO) @Message(id=12, value="Checking available updates") void checkingUpdates()
    • updatesFound

      @LogMessage(level=INFO) @Message(id=13, value="Found %d updates") void updatesFound(int count)
    • addingChannel

      @LogMessage(level=INFO) @Message(id=14, value="Adding channel %s") void addingChannel(String channel)
    • existingChannel

      @LogMessage(level=WARN) @Message(id=15, value="Channel %s already exists") void existingChannel(String channelName)
    • channelAdded

      @LogMessage(level=INFO) @Message(id=16, value="Channel %s added") void channelAdded(String channelName)
    • removingChannel

      @LogMessage(level=INFO) @Message(id=17, value="Removing channel %s") void removingChannel(String channelName)
    • channelRemoved

      @LogMessage(level=INFO) @Message(id=19, value="Channel removed %s") void channelRemoved(String channelName)
    • updatingChannel

      @LogMessage(level=INFO) @Message(id=20, value="Updating channel %s as %s") void updatingChannel(String channelDesc, String channelName)
    • channelUpdated

      @LogMessage(level=INFO) @Message(id=21, value="Channel %s updated") void channelUpdated(String channelName)
    • listChannels

      @LogMessage(level=INFO) @Message(id=22, value="Listing subscribed channels") void listChannels()
    • startedPhase

      @LogMessage(level=INFO) @Message(id=23, value="Starting phase: [%s] %s") void startedPhase(String name, String count)
    • completedPhase

      @LogMessage(level=INFO) @Message(id=24, value="Completed phase: [%s] %s") void completedPhase(String name, String count)
    • applyingCandidate

      @LogMessage(level=INFO) @Message(id=25, value="Applying %s candidate from %s") void applyingCandidate(String operationName, Path updateDir)
    • candidateChanges

      @LogMessage(level=INFO) @Message(id=26, value="Changed artifacts [%s]") void candidateChanges(String changes)
    • noCandidateConflicts

      @LogMessage(level=INFO) @Message(id=27, value="No conflicts found.") void noCandidateConflicts()
    • candidateConflicts

      @LogMessage(level=INFO) @Message(id=28, value="File conflicts found: [%s]") void candidateConflicts(String conflicts)
    • candidateApplied

      @LogMessage(level=INFO) @Message(id=29, value="%s candidate applied to %s") void candidateApplied(String operation, Path installationDir)
    • startingProvision

      @LogMessage(level=INFO) @Message(id=30, value="Starting provisioning into %s") void startingProvision(Path installDir)
    • provisioningComplete

      @LogMessage(level=INFO) @Message(id=31, value="Server provisioned into %s") void provisioningComplete(Path installDir)
    • serverRunningError

      @Message(id=200, value="Aborting update - the server appears to be running.") org.jboss.galleon.ProvisioningException serverRunningError()
    • dirMustBeDirectory

      @Message(id=201, value="Given path \'%s\' is a regular file. An empty directory or a non-existing path must be given.") IllegalArgumentException dirMustBeDirectory(Path path)
    • invalidManifest

      @Message(id=202, value="Invalid channel manifest definition") ChannelDefinitionException invalidManifest(@Cause org.wildfly.channel.InvalidChannelMetadataException e)
    • cannotInstallIntoNonEmptyDirectory

      @Message(id=203, value="Can\'t install the server into a non empty directory \'%s\'.") IllegalArgumentException cannotInstallIntoNonEmptyDirectory(Path path)
    • installationDirDoesNotExist

      @Message(id=204, value="Installation dir \'%s\' doesn\'t exist") IllegalArgumentException installationDirDoesNotExist(Path path)
    • installationDirAlreadyExists

      @Message(id=205, value="Installation dir \'%s\' already exists") org.jboss.galleon.ProvisioningException installationDirAlreadyExists(Path installDir)
    • noChannelReference

      @Message(id=206, value="Given configuration doesn\'t reference any channel or channel manifest.") NoChannelException noChannelReference()
    • noChannelManifestReference

      @Message(id=207, value="Invalid channel: Channel \'%s\' doesn\'t reference a manifest.") NoChannelException noChannelManifestReference(String name)
    • fplDefinitionDoesntContainChannel

      @Message(id=208, value="Pre-defined FPL [%s] doesn\'t specify any channels and no explicit channels were given.") NoChannelException fplDefinitionDoesntContainChannel(String fpl)
    • channelExists

      @Message(id=209, value="Channel \'%s\' is already present.") MetadataException channelExists(String channelName)
    • channelNotFound

      @Message(id=210, value="Channel with name [%s] cannot be found.") MetadataException channelNotFound(String channelName)
    • emptyChannelName

      @Message(id=211, value="Channel name cannot be empty.") MetadataException emptyChannelName()
    • promotingArtifacts

      @Message(id=212, value="Promoting artifacts to %s:") String promotingArtifacts(URL targetRepository)
    • unableToParseConfiguration

      @Message(id=213, value="Unable to parse server configuration at \'%s\'") MetadataException unableToParseConfiguration(Path path, @Cause Throwable e)
    • unableToParseConfigurationUri

      @Message(id=214, value="Unable to parse server configuration at \'%s\'") MetadataException unableToParseConfigurationUri(URI uri, @Cause Throwable e)
    • unableToReadFile

      @Message(id=215, value="Unable to read file at [%s]") MetadataException unableToReadFile(Path path, @Cause Exception e)
    • invalidUpdateCandidate

      @Message(id=216, value="The installation at %s is not a valid update for %s") InvalidUpdateCandidateException invalidUpdateCandidate(Path update, Path installation)
    • unableToSaveConfiguration

      @Message(id=217, value="Unable to save server configuration at \'%s\'") MetadataException unableToSaveConfiguration(Path path, @Cause Exception e)
    • unableToCloseStore

      @Message(id=218, value="Unable to close the update store.") @LogMessage(level=WARN) void unableToCloseStore(@Cause Exception e)
    • unableToCreateHistoryStorage

      @Message(id=219, value="Unable to create history store at [%s]") MetadataException unableToCreateHistoryStorage(Path path, @Cause Exception e)
    • incompleteMetadataBundle

      @Message(id=220, value="Provided metadata bundle [%s] is missing one or more entries") IllegalArgumentException incompleteMetadataBundle(Path path)
    • unableToWriteFile

      @Message(id=221, value="Unable to write file at [%s]") MetadataException unableToWriteFile(Path path, @Cause Exception e)
    • invalidInstallationDir

      @Message(id=222, value="Path `%s` does not contain a server installation provisioned by prospero. Missing required files: %s") IllegalArgumentException invalidInstallationDir(Path path, List<Path> missingFolders)
    • unableToAccessHistoryStorage

      @Message(id=223, value="Unable to access history store at [%s]") MetadataException unableToAccessHistoryStorage(Path path, @Cause Exception e)
    • unableToDownloadFile

      @Message(id=224, value="Unable to download file") MetadataException unableToDownloadFile(@Cause Exception e)
    • unableToCreateCache

      @Message(id=225, value="Unable to create temporary cache for provisioning cache folder.") org.jboss.galleon.ProvisioningException unableToCreateCache(@Cause Exception e)
    • failedToInitMaven

      @Message(id=226, value="Failed to initiate maven repository system") ProvisioningRuntimeException failedToInitMaven(@Cause Throwable exception)
    • streamNotFound

      @Message(id=227, value="Unable to find required stream definitions") String streamNotFound()
    • unableToResolve

      @Message(id=228, value="Unable to resolve artifact") String unableToResolve()
    • invalidUrl

      @Message(id=229, value="Invalid URL [%s]") IllegalArgumentException invalidUrl(String text, @Cause Exception e)
    • predefinedFplOrChannelRequired

      @Message(id=230, value="Incomplete configuration: If the FPL is not one of predefined names (%s) a channel must be given.") IllegalArgumentException predefinedFplOrChannelRequired(String availableFpls)
    • fplNorGalleonConfigWereSet

      @Message(id=231, value="Incomplete configuration: neither FPL nor Galleon provisioning config was given.") IllegalArgumentException fplNorGalleonConfigWereSet()
    • unexpectedArtifact

      @Message(id=232, value="Found unexpected artifact [%s]") ProvisioningRuntimeException unexpectedArtifact(String gav)
    • fileAlreadyExists

      @Message(id=233, value="File already exists [%s]") IllegalArgumentException fileAlreadyExists(Path path)
    • unsupportedPromotionTarget

      @Message(id=234, value="Promoting to non-file repositories is not currently supported") IllegalArgumentException unsupportedPromotionTarget()
    • wrongVersionFormat

      @Message(id=235, value="Wrong format of custom channel version [%s]") IllegalArgumentException wrongVersionFormat(String baseVersion)
    • versionLimitExceeded

      @Message(id=236, value="Custom channel version exceeded limit [%s]") IllegalArgumentException versionLimitExceeded(String baseVersion)
    • noArtifactsToPackage

      @Message(id=237, value="Cannot create bundle without artifacts.") IllegalArgumentException noArtifactsToPackage()
    • nonMavenChannelRef

      @Message(id=238, value="Channel reference has to use Maven GA.") IllegalArgumentException nonMavenChannelRef()
    • unableToPromote

      @Message(id=239, value="Unable to promote artifacts to [%s].") ArtifactPromoteException unableToPromote(URL target, @Cause Exception e)
    • unableToParseCustomizationBundle

      @Message(id=240, value="Unable to parse the customization bundle [%s].") ArtifactPromoteException unableToParseCustomizationBundle(Path path, @Cause Exception e)
    • repositoriesMustBeSetWithManifest

      @Message(id=241, value="At least one repository must be set when using the manifest option.") IllegalArgumentException repositoriesMustBeSetWithManifest()
    • outFileExists

      @Message(id=242, value="Out file [%s] exists already!") IllegalArgumentException outFileExists(Path outPath)
    • installationExported

      @Message(id=243, value="Installation metadata is exported to [%s].") String installationExported(Path outPath)
    • invalidPropertySubstitutionValue

      @Message(id=244, value="Malformed URL in substituted value : %s from %s") MetadataException invalidPropertySubstitutionValue(String substituted, String url)
    • savedStateNotFound

      @Message(id=245, value="The requested state %s does not exist in server\'s history.") MetadataException savedStateNotFound(String name)
    • unableToCreateTemporaryDirectory

      @Message(id=246, value="Unable to create temporary directory") org.jboss.galleon.ProvisioningException unableToCreateTemporaryDirectory(@Cause Throwable t)
    • invalidChannel

      @Message(id=247, value="Invalid channel definition") ChannelDefinitionException invalidChannel(@Cause org.wildfly.channel.InvalidChannelMetadataException e)
    • invalidFpl

      @Message(id=248, value="Provided feature pack location has invalid format `%s`. Expected <groupId:artifactId>") String invalidFpl(String fplText)
    • unknownInstallationProfile

      @Message(id=249, value="Unrecognized profile %s, did you mean one of [%s]") IllegalArgumentException unknownInstallationProfile(String profileName, String options)
    • invalidCandidateMarker

      @Message(id=250, value="Invalid candidate marker file [%s]. Missing required field [%s].") MetadataException invalidCandidateMarker(Path resolve, String operationProperty)
    • invalidMarkerFileOperation

      @Message(id=251, value="Unexpected operation type [%s] in the candidate marker file.") IllegalArgumentException invalidMarkerFileOperation(String operation)
    • invalidMetadataBundle

      @Message(id=252, value="Invalid metadata bundle [%s]. Expected a ZIP archive containing installation configuration.") IllegalArgumentException invalidMetadataBundle(Path path)
    • fallbackToGalleonProvisioningDefinition

      @LogMessage(level=INFO) @Message(id=253, value="Unable to retrieve stored provisioning configuration. Falling back to current configuration") void fallbackToGalleonProvisioningDefinition()
    • noDefaultModel

      @Message(id=254, value="Multiple models available in the selected feature pack, please select one.") String noDefaultModel()
    • modelNotFoundInFeaturePack

      @Message(id=255, value="Chosen feature pack does not support model %s. Please choose one of supported models.") String modelNotFoundInFeaturePack(String model)
    • layerNotFoundInFeaturePack

      @Message(id=256, value="The feature pack doesn\'t define requested layers: [%s]") String layerNotFoundInFeaturePack(String layerName)
    • featurePackAlreadyInstalled

      @Message(id=257, value="Feature pack %s is already provisioned") FeaturesAddAction.FeaturePackAlreadyInstalledException featurePackAlreadyInstalled(org.jboss.galleon.universe.FeaturePackLocation fpl)
    • addingFeaturePack

      @LogMessage(level=DEBUG) @Message(id=258, value="Adding a feature pack [%s] with configuration %s and layers [%s]") void addingFeaturePack(org.jboss.galleon.universe.FeaturePackLocation fpl, String configuration, String layers)
    • galleonConfigNotFound

      @Message(id=259, value="Requested configuration %s/%s is not available in the feature packs.") String galleonConfigNotFound(String model, String name)
    • dirMustBeWritable

      @Message(id=260, value="The selected folder %s cannot be created.") IllegalArgumentException dirMustBeWritable(Path directory)
    • channelNamesWrittenToFile

      @Message(id=261, value="Channel map data has been written to %s.") @LogMessage(level=DEBUG) void channelNamesWrittenToFile(String fileName)
    • unableToWriteChannelNamesToFile

      @Message(id=262, value="Unable to create a candidate properties file %s.") @LogMessage(level=ERROR) void unableToWriteChannelNamesToFile(String fileName, @Cause Exception e)
    • unableToReadChannelNames

      @Message(id=263, value="Unable to read the candidate properties file %s.") @LogMessage(level=ERROR) void unableToReadChannelNames(String fileName, @Cause Exception e)
    • unableToReadArtifactCache

      @Message(id=264, value="Bad artifact record format in the cache descriptor, line %d: \'%s\'") IOException unableToReadArtifactCache(int row, String line, @Cause Exception e)
    • unableToCreateTemporaryFile

      @Message(id=265, value="Unable to create temporary file") org.jboss.galleon.ProvisioningException unableToCreateTemporaryFile(@Cause Throwable t)
    • unableToExtractRepositoryArchive

      @Message(id=266, value="Unable to extract the repository archive %s.") InvalidRepositoryArchiveException unableToExtractRepositoryArchive(String archiveUrl, @Cause Throwable t)
    • invalidRepositoryArchive

      @Message(id=267, value="Repository archive has to contain a single root folder with a maven-repository sub-folder.") InvalidRepositoryArchiveException invalidRepositoryArchive()
    • cannotRevertToTip

      @Message(id=268, value="The revision %s is the state of the current installation. Reverting to the same state is not a valid operation.") MetadataException cannotRevertToTip(String name)
    • noChangesAvailable

      @Message(id=269, value="There are no changes to apply to the installation %s from the candidate installation %s.") InvalidUpdateCandidateException noChangesAvailable(Path installationDir, Path candidateDir)
    • unableToCompareHashDirs

      @Message(id=270, value="Unable to compare the hash content between the installation %s and candidate installation %s.") MetadataException unableToCompareHashDirs(Path installationDir, Path updateDir, @Cause Exception e)
    • unableToEvaluateSymbolicLink

      @Message(id=271, value="Unable to evaluate symbolic link %s.") RuntimeException unableToEvaluateSymbolicLink(Path symlink, @Cause IOException e)
    • failedToApplyCandidate

      @Message(id=272, value="Failed to apply the candidate changes due to: %s") String failedToApplyCandidate(String reason)
    • staleCandidate

      @Message(id=273, value="The server [%s] has been modified after the candidate has been created [%s].") InvalidUpdateCandidateException staleCandidate(Path originalServer, Path candiadate)
    • notCandidate

      @Message(id=274, value="The folder [%s] doesn\'t contain a server candidate.") InvalidUpdateCandidateException notCandidate(Path candidateServer)
    • wrongCandidateOperation

      @Message(id=275, value="The candidate at [%s] was not prepared for %s operation.") InvalidUpdateCandidateException wrongCandidateOperation(Path candidateServer, ApplyCandidateAction.Type operationType)