diff options
author | Nathan Gass | 2022-06-22 10:36:44 +0200 |
---|---|---|
committer | Nathan Gass | 2022-06-22 10:36:44 +0200 |
commit | c8327bdc857ea26ec576d5c5d1070dcfd815c033 (patch) | |
tree | 9a7ca9296656982e4171d113341639b7322a3d0c /auto_prepend.php | |
parent | 72010f5b4d1aee57e1ace054b91ab579d630366d (diff) | |
download | itools-c8327bdc857ea26ec576d5c5d1070dcfd815c033.tar.gz itools-c8327bdc857ea26ec576d5c5d1070dcfd815c033.tar.bz2 itools-c8327bdc857ea26ec576d5c5d1070dcfd815c033.zip |
ED output to stderror if IT_ED_STDERR is set
Diffstat (limited to 'auto_prepend.php')
-rw-r--r-- | auto_prepend.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/auto_prepend.php b/auto_prepend.php index 528769f..19108fb 100644 --- a/auto_prepend.php +++ b/auto_prepend.php @@ -16,7 +16,7 @@ function D(...$args) function ED(...$args) { it_debug::setup(); - echo it_debug::dump($args); + it_debug::echo($args); return $args[0]; } @@ -33,7 +33,7 @@ function EDC($var, ...$args) if ($args) { it_debug::setup(); - echo it_debug::dump($args); + it_debug::echo($args); } if (!$result || $result === true) # Compatibility with old map relying on 0|1 @@ -51,7 +51,8 @@ function EDX(...$args) if ($_SERVER['REMOTE_ADDR'] && !headers_sent()) header("Content-Type: text/html"); # Not going to be e.g. a valid gif anyway - exit(it_debug::dump($args)); + it_debug::echo($args); + exit(); } |