]> git.mxchange.org Git - friendica.git/commitdiff
Add offset parameter to System::callstack
authorHypolite Petovan <hypolite@mrpetovan.com>
Mon, 27 Jul 2020 04:20:30 +0000 (00:20 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 27 Jul 2020 06:31:42 +0000 (02:31 -0400)
- Enable its use in centralized methods without polluting the stack

src/Core/System.php

index 67ee3a80383dd66d40291dabfbd8390f0b9b7d7d..cb916610248cf385cc2332968cd42512e75a1884 100644 (file)
@@ -33,16 +33,17 @@ class System
        /**
         * Returns a string with a callstack. Can be used for logging.
         *
-        * @param integer $depth optional, default 4
+        * @param integer $depth  How many calls to include in the stacks after filtering
+        * @param int     $offset How many calls to shave off the top of the stack, for example if
+        *                        this is called from a centralized method that isn't relevant to the callstack
         * @return string
         */
-       public static function callstack($depth = 4)
+       public static function callstack(int $depth = 4, int $offset = 0)
        {
                $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
 
-               // We remove the first two items from the list since they contain data that we don't need.
-               array_shift($trace);
-               array_shift($trace);
+               // We remove at least the first two items from the list since they contain data that we don't need.
+               $trace = array_slice($trace, 2 + $offset);
 
                $callstack = [];
                $previous = ['class' => '', 'function' => '', 'database' => false];