summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/logicalfile/lmi/scripts/logicalfile/logicalfile.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/commands/logicalfile/lmi/scripts/logicalfile/logicalfile.py b/commands/logicalfile/lmi/scripts/logicalfile/logicalfile.py
index a3c60aa..0f83ec0 100644
--- a/commands/logicalfile/lmi/scripts/logicalfile/logicalfile.py
+++ b/commands/logicalfile/lmi/scripts/logicalfile/logicalfile.py
@@ -159,6 +159,8 @@ def lf_createdir(ns, directory):
directory = directory.rstrip('/')
ns.LMI_UnixDirectory.create_instance(get_directory_name_properties(ns, directory))
+ LOG().info("Successfully created directory: %s", directory)
+
def lf_deletedir(ns, directory):
"""
Delete a directory.
@@ -172,6 +174,8 @@ def lf_deletedir(ns, directory):
directory = directory.rstrip('/')
get_directory_instance(ns, directory).delete()
+ LOG().info("Successfully deleted directory: %s", directory)
+
def lf_show(ns, target):
"""
Show detailed information about the target.