diff --git a/bundles/create-java-project.ts b/bundles/create-java-project.ts index 9f6ed59..9e07416 100644 --- a/bundles/create-java-project.ts +++ b/bundles/create-java-project.ts @@ -47,6 +47,7 @@ const SCRIPT_URL_PREFIX = "https://script.hatter.ink/@latest/"; // build.json | build_springboot_template.gradle | build_jar_template.gradle async function writeGitIgnore(): Promise { + log.info(`Write file: ${DOT_GIT_IGNORE}`); await writeStringToFile( DOT_GIT_IGNORE, DEFAULT_GIT_IGNORE.join("\n") + "\n", @@ -55,6 +56,7 @@ async function writeGitIgnore(): Promise { async function createDirs(): Promise { for (const dir of DIRS) { + log.info(`Create directory: ${dir}`); await makeDirectory(dir); } }