Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hasani committed Jan 16, 2025
1 parent 28fd34f commit 1ec3f1a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,7 @@ function copyProjectDependencies(dependenciesFolder: FolderInfo, modulePath: str

export async function prepareProjectDependencies(dependenciesFolder: FolderInfo, rootPomPath: string) {
await setMaven()
getLogger().info(
`CodeTransformation: about to build project locally with Maven ${transformByQState.getMavenName()}`
)
getLogger().info('CodeTransformation: running Maven copy-dependencies')
try {
copyProjectDependencies(dependenciesFolder, rootPomPath)
} catch (err) {
Expand All @@ -121,6 +119,7 @@ export async function prepareProjectDependencies(dependenciesFolder: FolderInfo,
)
}

getLogger().info('CodeTransformation: running Maven install')
try {
installProjectDependencies(dependenciesFolder, rootPomPath)
} catch (err) {
Expand Down

0 comments on commit 1ec3f1a

Please sign in to comment.