SVN commit 1005391 by habacker: added debug messages M +3 -1 utils.py --- trunk/kdesupport/emerge/bin/utils.py #1005390:1005391 @@ -1038,8 +1038,10 @@ def createDir(path): if not os.path.exists( path ): + debug("creating directory %s " % ( path ), 2) os.makedirs( path ) def copyFile(src,dest): """ copy file from src to dest""" - shutil.copy( src, dst ) + debug("copy file from %s to %s" % ( src, dest ), 2) + shutil.copy( src, dest )