logger.LogInformation("The enterprise environment has changed. Updating the current environment.");
CURRENT_ENVIRONMENT=nextEnterpriseEnvironment;
switch(enterpriseConfigServerUrl)
{
casenullwhenenterpriseConfigId==Guid.Empty:
logger.LogInformation("AI Studio runs without an enterprise configuration.");
break;
casenull:
logger.LogWarning($"AI Studio runs with an enterprise configuration id ('{enterpriseConfigId}'), but the configuration server URL is not set.");
break;
casenotnullwhenenterpriseConfigId==Guid.Empty:
logger.LogWarning($"AI Studio runs with an enterprise configuration server URL ('{enterpriseConfigServerUrl}'), but the configuration ID is not set.");
break;
default:
logger.LogInformation($"AI Studio runs with an enterprise configuration id ('{enterpriseConfigId}') and configuration server URL ('{enterpriseConfigServerUrl}').");