]> git.mxchange.org Git - core.git/commitdiff
Commented out noisy debug lines, closeFile() should now be okay.
authorRoland Haeder <roland@mxchange.org>
Thu, 19 Mar 2015 00:48:03 +0000 (01:48 +0100)
committerRoland Haeder <roland@mxchange.org>
Thu, 19 Mar 2015 00:48:03 +0000 (01:48 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/file_directories/class_BaseAbstractFile.php
inc/classes/main/file_directories/class_BaseFileIo.php

index 3f4869e416029dde018bcb0feeff333672be780f..e26c58bbcefd3b06b4c8364a6b902e8fafa889f9 100644 (file)
@@ -135,7 +135,7 @@ class BaseAbstractFile extends BaseFrameworkSystem {
         */
        private function closeFile () {
                // Debug message
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: fileName=%s - CALLED!', __METHOD__, __LINE__, $this->getFileName()));
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: fileName=%s - CALLED!', __METHOD__, __LINE__, $this->getFileName()));
 
                // Close down pointer instance as well by unsetting it
                $this->unsetPointerInstance();
@@ -144,7 +144,7 @@ class BaseAbstractFile extends BaseFrameworkSystem {
                $this->setFileName('');
 
                // Debug message
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: EXIT!', __METHOD__, __LINE__));
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: EXIT!', __METHOD__, __LINE__));
        }
 
        /**
index df6d0321c52f5473bf6b0526d733a4531e2a1a2d..ea9d849f98577c089f7b4a6eb3de2c99c92a7e64 100644 (file)
@@ -69,7 +69,7 @@ class BaseFileIo extends BaseFrameworkSystem {
         */
        private function closeFile () {
                // Debug message
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: fileName=%s - CALLED!', __METHOD__, __LINE__, $this->getFileName()));
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: fileName=%s - CALLED!', __METHOD__, __LINE__, $this->getFileName()));
 
                if (is_null($this->getPointer())) {
                        // Pointer not initialized
@@ -88,7 +88,7 @@ class BaseFileIo extends BaseFrameworkSystem {
                $this->setFileName('');
 
                // Debug message
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: EXIT!', __METHOD__, __LINE__));
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d]: EXIT!', __METHOD__, __LINE__));
        }
 
        /**