From 86730ae457e77b341eaa2f37153749940da49647 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Sun, 6 Feb 2022 19:41:05 +0100
Subject: [PATCH] Continued: - no, same result as fgets() is being invoked -
 get_class() did the trick here
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

Signed-off-by: Roland Häder <roland@mxchange.org>
---
 .../output/raw/class_FrameworkRawFileOutputPointer.php          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/main/classes/file_directories/output/raw/class_FrameworkRawFileOutputPointer.php b/framework/main/classes/file_directories/output/raw/class_FrameworkRawFileOutputPointer.php
index 9f488491..bff94f4f 100644
--- a/framework/main/classes/file_directories/output/raw/class_FrameworkRawFileOutputPointer.php
+++ b/framework/main/classes/file_directories/output/raw/class_FrameworkRawFileOutputPointer.php
@@ -79,7 +79,7 @@ class FrameworkRawFileOutputPointer extends BaseFileIo implements OutputPointer
 		$pointerInstance = new FrameworkRawFileOutputPointer();
 
 		// Set file pointer and file name
-		/* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('RAW-FILE-OUTPUT-POINTER: pointerInstance=%s,fileObjectp=%s', $pointerInstance->__toString(), $fileObject));
+		/* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('RAW-FILE-OUTPUT-POINTER: pointerInstance=%s,fileObject=%s', $pointerInstance->__toString(), get_class($fileObject)));
 		$pointerInstance->setFileObject($fileObject);
 
 		// Return the instance
-- 
2.39.5