diff --git a/www/admin/class_test.error_msg.php b/www/admin/class_test.error_msg.php
index 1d1ba0ac..e2aa5901 100644
--- a/www/admin/class_test.error_msg.php
+++ b/www/admin/class_test.error_msg.php
@@ -35,19 +35,32 @@ print '
' . $PAGE_NAME . '
';
$em = new \CoreLibs\Logging\ErrorMessage($log);
+print "Log ERROR: " . $log->prAr($em->getFlagLogError()) . "
";
+
print "FN: " . ml::fromName('Affe')->name . "
";
print "NU: " . ml::fromValue(100)->name . "
";
print "NU: " . ml::fromValue(1000)->name . "
";
-$em->setErrorMsg('123', 'error', 'msg this is bad, not logged');
-$em->setErrorMsg('123', 'error', 'msg this is bad, logged', log_error:true);
+$em->setErrorMsg('123', 'error', 'msg this is bad, auto logged if debug');
+$em->setErrorMsg('123', 'error', 'msg this is bad, auto logged if debug', 'target-id', 'other-style');
+$em->setErrorMsg('123', 'error', 'msg this is bad, logged always', log_error:true);
+$em->setErrorMsg('123', 'error', 'msg this is bad, never logged', log_error:false);
$em->setErrorMsg('1000', 'info', 'This is good');
$em->setErrorMsg('9999', 'abort', 'BAD: This is critical (abort)');
$em->setErrorMsg('10-1000', 'wrong', 'Wrong level: This is emergency');
+// set some jump targets too
+$em->setErrorMsg('100-1', 'error', 'Input wring', jump_target:['target' => 'foo-123', 'info' => 'Jump Target 123']);
+$em->setErrorMsg('100-2', 'error', 'Input wring', jump_target:['target' => 'foo-123', 'info' => 'Jump Target 456']);
+$em->setMessage('error', 'I have no id set', jump_target:['target' => 'bar-123', 'info' => 'Jump Bar']);
+$em->setMessage('error', 'Jump empty', jump_target:['target' => 'bar-empty']);
+
print "ErrorsLast: " . $log->prAr($em->getLastErrorMsg()) . "
";
print "ErrorsIds: " . $log->prAr($em->getErrorIds()) . "
";
print "Errors: " . $log->prAr($em->getErrorMsg()) . "
";
+print "JumpTargets: " . $log->prAr($em->getJumpTarget()) . "
";
print "