]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
utils: drop unnecessary debug msgs from mkdirhier
authorChris Larson <chris_larson@mentor.com>
Thu, 16 Dec 2010 19:18:31 +0000 (12:18 -0700)
committerChris Larson <chris_larson@mentor.com>
Thu, 16 Dec 2010 19:18:31 +0000 (12:18 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
lib/bb/utils.py

index ea5af49cdf21050c6e1e2c640996b8bda085c4ce..ab2faacd7743cac3217066f7dcbc771f25ae102c 100644 (file)
@@ -577,10 +577,8 @@ def mkdirhier(dir):
     directory already exists like os.makedirs
     """
 
-    logger.debug(3, "mkdirhier(%s)", dir)
     try:
         os.makedirs(dir)
-        logger.debug(2, "created " + dir)
     except OSError as e:
         if e.errno != errno.EEXIST:
             raise e