From 9053b8a4d4a4ea0d59e2300f7a6b29b6cbcdcad5 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Fri, 24 Oct 2014 14:16:49 +0200 Subject: [PATCH] Name the tag if the error id during ev cmd --- phpdbg.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/phpdbg.c b/phpdbg.c index 88313585b5..f09dc4ee13 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -463,6 +463,11 @@ static void php_sapi_phpdbg_log_message(char *message TSRMLS_DC) /* {{{ */ * We must not request TSRM before being boot */ if (phpdbg_booted) { + if (PHPDBG_G(flags) & PHPDBG_IN_EVAL) { + phpdbg_error("eval", "msg=\"%s\"", "%s", message); + return; + } + phpdbg_error("php", "msg=\"%s\"", "%s", message); switch (PG(last_error_type)) { -- 2.50.1