1
0

feat: update tool logs to be more coherent

This commit is contained in:
2026-03-11 13:56:00 +01:00
parent 35c8840ed4
commit 46d32c43ba
5 changed files with 21 additions and 22 deletions

View File

@@ -17,7 +17,7 @@ internal static class DirTools
{
sourcePath = ResolvePath(sourcePath);
destinationPath = ResolvePath(destinationPath);
Log($"Renaming/moving directory: {sourcePath} -> {destinationPath}");
Log($" ● rename_dir: {sourcePath} -> {destinationPath}");
if (!Directory.Exists(sourcePath))
return $"ERROR: Directory not found: {sourcePath}";
@@ -44,7 +44,7 @@ internal static class DirTools
[Description("Path to the directory to create.")] string path)
{
path = ResolvePath(path);
Log($"Creating directory: {path}");
Log($" ● create_dir: {path}");
if (Directory.Exists(path))
return $"ERROR: Directory already exists: {path}";