Temp dont ignore org

This commit is contained in:
Owen
2025-10-22 10:59:35 -07:00
parent 9301477262
commit fdd4d5244f
2 changed files with 3 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ export async function getCountryCodeForIp(
): Promise<string | undefined> {
try {
if (!maxmindLookup) {
logger.warn(
logger.debug(
"MaxMind DB path not configured, cannot perform GeoIP lookup"
);
return;

View File

@@ -69,7 +69,8 @@ export async function logRequestAudit(
if (!orgId) {
logger.warn("logRequestAudit: No organization context found");
return;
orgId = "unknown";
// return;
}
// if (!actorType || !actor || !actorId) {