Minor logging message updates, no functional changes

This commit is contained in:
2025-06-17 23:03:26 +10:00
parent d0c02b91c0
commit ac8e79ab99
3 changed files with 8 additions and 2 deletions

View File

@@ -12,6 +12,8 @@ use App\Classes\LDAP\Server;
class AjaxController extends Controller
{
private const LOGKEY = 'CAc';
/**
* Get the LDAP server BASE DNs
*
@@ -42,7 +44,7 @@ class AjaxController extends Controller
if (str_starts_with($dn,'*') && ($x=strpos($dn,'|')))
$dn = substr($dn,$x+1);
Log::debug(sprintf('%s: Query [%s]',__METHOD__,$dn));
Log::debug(sprintf('%s:Query [%s]',self::LOGKEY,$dn));
return (config('server'))
->children($dn)

View File

@@ -26,6 +26,8 @@ use App\Ldap\Entry;
class HomeController extends Controller
{
private const LOGKEY = 'CHc';
/**
* Create a new object in the LDAP server
*