535 references to LogInformation
aspire (40)
Backchannel\AppHostCliBackchannel.cs (2)
326logger.LogInformation("Backchannel disconnected: {Reason}. Attempting to reconnect...", args.Reason); 374logger.LogInformation("Successfully reconnected to backchannel");
Backchannel\AuxiliaryBackchannelMonitor.cs (5)
151logger.LogInformation("Starting auxiliary backchannel monitor for {CommandType}", command.GetType().Name); 174logger.LogInformation("Auxiliary backchannel monitor stopping"); 341logger.LogInformation("Connecting to auxiliary socket: {SocketPath}", socketPath); 417logger.LogInformation("Disconnected from AppHost at {SocketPath}: {Reason}", socketPath, args.Reason); 436logger.LogInformation(
Bundles\BundleService.cs (1)
130logger.LogInformation("Extracting embedded bundle to {Path}...", destinationPath);
Certificates\CertificateGeneration\CertificateManager.cs (3)
1524_logger.LogInformation("For OpenSSL trust to take effect, '{CertDir}' must be listed in the {EnvVarName} environment variable. For example, `export {EnvVarName}=\"{CertDir}:{OpenSslDir}\"`. See https://aka.ms/dev-certs-trust for more information.", certDir, envVarName, envVarName, certDir, openSslDir); 1528_logger.LogInformation("For OpenSSL trust to take effect, '{CertDir}' must be listed in the {EnvVarName} environment variable. See https://aka.ms/dev-certs-trust for more information.", certDir, envVarName); 1540_logger.LogInformation("For OpenSSL trust to take effect, '{CertDir}' must be listed in the {EnvVarName} environment variable. For example, `export {EnvVarName}=\"{CertDir}:${EnvVarName}\"`. See https://aka.ms/dev-certs-trust for more information.", certDir, envVarName, envVarName, certDir, envVarName);
Configuration\ConfigurationService.cs (2)
104logger.LogInformation("Found settings file at {Path}", newSettingsPath); 114logger.LogInformation("Found legacy settings file at {Path}", legacySettingsPath);
DotNet\DotNetCliRunner.cs (6)
714logger.LogInformation("Adding package {PackageName} with version {PackageVersion} to project {ProjectFilePath}", packageName, packageVersion, projectFilePath.FullName); 731logger.LogInformation("Package {PackageName} with version {PackageVersion} added to project {ProjectFilePath}", packageName, packageVersion, projectFilePath.FullName); 743logger.LogInformation("Adding project {ProjectFilePath} to solution {SolutionFilePath}", projectFile.FullName, solutionFile.FullName); 760logger.LogInformation("Project {ProjectFilePath} added to solution {SolutionFilePath}", projectFile.FullName, solutionFile.FullName); 1110logger.LogInformation("Adding project reference from {ProjectFile} to {ReferencedProject}", projectFile.FullName, referencedProject.FullName); 1127logger.LogInformation("Project reference added from {ProjectFile} to {ReferencedProject}", projectFile.FullName, referencedProject.FullName);
Mcp\Docs\DocsFetcher.cs (2)
89_logger.LogInformation("Fetched aspire.dev docs after retry, length: {Length} chars", retryContent.Length); 109_logger.LogInformation("Fetched aspire.dev docs, length: {Length} chars", content.Length);
Mcp\Docs\DocsIndexService.cs (2)
159_logger.LogInformation("Loaded {Count} documents from cache in {ElapsedTime:ss\\.fff} seconds.", _indexedDocuments.Count, cacheElapsedTime); 182_logger.LogInformation("Indexed {Count} documents from aspire.dev in {ElapsedTime:ss\\.fff} seconds.", _indexedDocuments.Count, elapsedTime);
Program.cs (5)
668logger.LogInformation("Version: {Version}", AspireCliTelemetry.GetCliVersion()); 669logger.LogInformation("Build ID: {BuildId}", AspireCliTelemetry.GetCliBuildId()); 670logger.LogInformation("Working directory: {WorkingDirectory}", Environment.CurrentDirectory); 717logger.LogInformation("Command: {CommandLine}", commandLine); 730logger.LogInformation("Exit code: {ExitCode}", exitCode);
Projects\DotNetAppHostProject.cs (2)
228_logger.LogInformation("Aspire run isolated. Isolated UserSecretsId: {IsolatedUserSecretsId}", isolatedUserSecretsId); 538_logger.LogInformation("No UserSecretsId found. Initializing user secrets for {Project}...", projectFile.Name);
Projects\GuestAppHostProject.cs (2)
202_logger.LogInformation("Loaded config from {Directory} (file exists: {Exists})", configDir.FullName, AspireConfigFile.Exists(configDir.FullName)); 1225_logger.LogInformation("Generated {Count} {CodeGenerator} files in {Path}",
Projects\ProjectLocator.cs (3)
200logger.LogInformation("Found AppHost path '{AppHostPath}' from config file in {Directory}", configAppHostPath, searchDirectory.FullName); 461logger.LogInformation("Migrating legacy settings from {LegacyDir} to {ConfigFile}", legacySettingsRootDirectory.FullName, aspireConfigFile.FullName); 471logger.LogInformation("Migrating legacy settings to {SettingsFilePath}", configFilePath);
Projects\ProjectUpdater.cs (5)
36logger.LogInformation("No updates required for project: {ProjectFile}", projectFile.FullName); 272logger.LogInformation("App Host SDK is up to date."); 717logger.LogInformation("Package '{PackageId}' is up to date.", packageId); 737logger.LogInformation("Package '{PackageId}' not found in Directory.Packages.props, skipping.", packageId); 747logger.LogInformation("Package '{PackageId}' is up to date.", packageId);
Aspire.Cli.Tests (3)
Interaction\SpectreConsoleLoggerProviderTests.cs (1)
53logger.LogInformation("Test info message");
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Dashboard (20)
Components\Pages\TraceDetail.razor.cs (3)
285Logger.LogInformation("Getting trace '{TraceId}'.", TraceId); 291Logger.LogInformation("Couldn't find trace '{TraceId}'.", TraceId); 304Logger.LogInformation("Trace '{TraceId}' has {SpanCount} spans.", _trace.TraceId, _trace.Spans.Count);
DashboardWebApplication.cs (5)
380_logger.LogInformation("Now listening on: {DashboardUri}", frontendEndpointInfo.GetResolvedAddress()); 386_logger.LogInformation("OTLP/gRPC listening on: {OtlpEndpointUri}", _otlpServiceGrpcEndPointAccessor().GetResolvedAddress()); 391_logger.LogInformation("OTLP/HTTP listening on: {OtlpEndpointUri}", _otlpServiceHttpEndPointAccessor().GetResolvedAddress()); 396_logger.LogInformation("MCP listening on: {McpEndpointUri}", _mcpEndPointAccessor().GetResolvedAddress()); 558logger.LogInformation("Aspire version: {Version}", informationalVersion);
Model\Assistant\AIContextProvider.cs (1)
284_logger.LogInformation("AI is disabled in configuration.");
Model\Assistant\ChatClientFactory.cs (5)
86_logger.LogInformation("Chat client factory initialized. Endpoint = {Endpoint}", _endpoint); 135_logger.LogInformation("Requesting GHCP info from {Endpoint}.", ghcpInfoAddress); 149_logger.LogInformation("Received GHCP info. State = {State}, Models = {Models}", response.State, string.Join(", ", response.Models?.Select(m => m.Name) ?? [])); 178_logger.LogInformation("AI is enabled via OpenAI."); 186_logger.LogInformation("AI is disabled because there isn't a debug session.");
Otlp\Model\OtlpResource.cs (2)
194Context.Logger.LogInformation("Error adding summary metrics. Summary is not supported."); 198Context.Logger.LogInformation("Error adding exponential histogram metrics. Exponential histogram is not supported.");
src\Shared\LoggingHelpers.cs (1)
25logger.LogInformation(message, dashboardUrl);
Telemetry\DashboardTelemetrySender.cs (3)
47_logger.LogInformation("Starting sender loop."); 80_logger.LogInformation("Ending sender loop."); 126_logger.LogInformation("Telemetry is not configured.");
Aspire.Dashboard.Components.Tests (39)
Pages\ConsoleLogsTests.cs (30)
47logger.LogInformation($"Requesting logs for: {name}"); 98logger.LogInformation($"Requesting logs for: {name}"); 127logger.LogInformation("Waiting for selected resource."); 134logger.LogInformation("Waiting for finish message."); 153logger.LogInformation("Changing resource."); 159logger.LogInformation("Waiting for selected resource."); 361logger.LogInformation("Resource and subscription should be set immediately on first render."); 368logger.LogInformation("Log results are added to log viewer."); 409logger.LogInformation("Resource and subscription should be set immediately on first render."); 416logger.LogInformation("Throw error from console logs subscription."); 458logger.LogInformation("Resource and subscription should be set immediately on first render."); 467logger.LogInformation("Throw error from console logs subscription."); 505logger.LogInformation("Waiting for selected resource."); 509logger.LogInformation("Log results are added to log viewer."); 517logger.LogInformation("Clear current entries."); 525logger.LogInformation("New log results are added to log viewer."); 565logger.LogInformation("Waiting for selected resource."); 569logger.LogInformation("Log results are added to log viewer."); 581logger.LogInformation("New log results are added to log viewer."); 749logger.LogInformation("Check logs are empty."); 753logger.LogInformation("Pause logs."); 758logger.LogInformation("Wait for pause log."); 761logger.LogInformation("Adding filtered logs during pause."); 768logger.LogInformation("Assert that the only log is still the pause log."); 780logger.LogInformation("Resume logs."); 788logger.LogInformation("Assert that pause log has expected content."); 806logger.LogInformation("Write a new log after resume."); 810logger.LogInformation("Assert that log entries discarded aren't in log viewer and log entries that should be logged are in log viewer."); 824logger.LogInformation($"Log entries count: {logEntries.EntriesCount}"); 828logger.LogInformation($"Log line. Type = {logEntry.Type}, Raw content = {logEntry.RawContent ?? "no content"}, Pause content: {logEntry.Pause?.GetDisplayText(loc, browserTimeProvider) ?? "n/a"}");
Pages\TraceDetailsTests.cs (7)
133logger.LogInformation($"Assert row count for '{traceId}'"); 147logger.LogInformation($"Assert row count for '{traceId}'"); 201logger.LogInformation($"Assert row count for '{traceId}'"); 228logger.LogInformation($"Assert updated row count for '{traceId}'"); 283logger.LogInformation($"Assert row count for '{traceId}'"); 291logger.LogInformation($"Adding span for difference trace"); 311logger.LogInformation($"Assert not updated for '{traceId}'");
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Dashboard.Tests (20)
Integration\OtlpGrpcServiceTests.cs (6)
175logger.LogInformation("Writing original JSON file."); 202logger.LogInformation("Options changed."); 218logger.LogInformation("Writing new JSON file."); 221logger.LogInformation("Waiting for options change."); 224logger.LogInformation("Assert new API key."); 228logger.LogInformation("Client sends new request with old API key.");
Integration\ServerRetryHelper.cs (6)
100logger.LogInformation("Searching for free port starting at {nextPortAttempt}.", nextPortAttempt); 115logger.LogInformation("Found {count} unavailable endpoints.", unavailableEndpoints.Count); 129logger.LogInformation("Port {port} in use. End point: {match}", port, match); 138logger.LogInformation("Port {port} free and verified.", port); 143logger.LogInformation("Port {port} appeared free but failed to bind. Continuing search.", port); 173logger.LogInformation("Port {port} bind check failed: address already in use.", port);
Telemetry\TelemetryLoggerProviderTests.cs (1)
37circuitHostLogger.LogInformation("Test log message");
TelemetryRepositoryTests\LogTests.cs (5)
730logger.LogInformation("Writing log 1"); 750logger.LogInformation("Received log 1 callback"); 752logger.LogInformation("Writing log 2"); 771logger.LogInformation("Received log 2 callback"); 774logger.LogInformation("Elapsed time: {Elapsed}", elapsed);
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting (68)
ApplicationModel\CertificateTrustExecutionConfigurationGatherer.cs (2)
79resourceLogger.LogInformation("No custom certificate authorities to configure for '{ResourceName}'. Default certificate authority trust behavior will be used.", resource.Name); 123resourceLogger.LogInformation("Resource '{ResourceName}' has a certificate trust scope of '{Scope}'. Automatically including system root certificates in the trusted configuration.", resource.Name, Enum.GetName(additionalData.Scope));
ApplicationModel\CommandsConfigurationExtensions.cs (5)
215mainLogger.LogInformation(BuildLogPrefix + "Stopping resource for rebuild..."); 235mainLogger.LogInformation(BuildLogPrefix + "Building project..."); 272mainLogger.LogInformation(BuildLogPrefix + "Build succeeded. Restarting resource..."); 287mainLogger.LogInformation(BuildLogPrefix + "Build succeeded. Resource will start with the updated binary when dependencies are ready."); 376targetLogger.LogInformation(BuildLogPrefix + "{Content}", line.Content);
ApplicationModel\ResourceCommandService.cs (4)
134logger.LogInformation("Executing command '{CommandName}'.", commandName); 164logger.LogInformation("Successfully executed command '{CommandName}'.", commandName); 174logger.LogInformation("Failure executing command '{CommandName}'. Error message: {ErrorMessage}", commandName, result.ErrorMessage); 190logger.LogInformation("Command '{CommandName}' not available.", commandName);
ApplicationModel\ResourceExtensions.cs (6)
605logger.LogInformation("Waiting for value from resource '{ResourceName}'", providerResource.Name); 609logger.LogInformation("Waiting for value for environment variable value '{Name}' from resource '{ResourceName}'", key, providerResource.Name); 614logger.LogInformation("Waiting for value for connection string from resource '{ResourceName}'", cs.Name); 618logger.LogInformation( 628logger.LogInformation("Waiting for value from {ValueProvider}.", valueProvider.ToString()); 632logger.LogInformation("Waiting for value for environment variable value '{Name}' from {ValueProvider}.", key, valueProvider.ToString());
ApplicationModel\ResourceNotificationService.cs (7)
147resourceLogger.LogInformation("Waiting for resource '{ResourceName}' to become healthy.", displayName); 156resourceLogger.LogInformation("Waiting for resource ready to execute for '{ResourceName}'.", displayName); 166resourceLogger.LogInformation("Finished waiting for resource '{ResourceName}'.", displayName); 272resourceLogger.LogInformation("Waiting for resource '{ResourceName}' to complete.", dependency.Name); 326resourceLogger.LogInformation("Finished waiting for resource '{ResourceName}'.", displayName); 338resourceLogger.LogInformation("Waiting for resource '{ResourceName}' to enter the '{State}' state.", dependency.Name, KnownResourceStates.Running); 421resourceLogger.LogInformation("Finished waiting for resource '{ResourceName}' to start.", displayName);
Ats\LoggingExports.cs (1)
34logger.LogInformation("{Message}", message);
Backchannel\AuxiliaryBackchannelRpcTarget.cs (3)
425logger.LogInformation("GetDashboardUrlsAsync called on auxiliary backchannel"); 835logger.LogInformation("Received request to stop AppHost"); 851logger.LogInformation("Stopping AppHost application");
Dashboard\DashboardEventHandlers.cs (1)
405distributedApplicationLogger.LogInformation("Now listening on: {DashboardUrl}", dashboardUrl.TrimEnd('/'));
Dcp\DcpExecutor.cs (2)
938_logger.LogInformation($"Waiting for container network '{containerNetworkName}' tunnel initialization..."); 942_logger.LogInformation($"Tunnel for container network '{containerNetworkName}' initialized");
Dcp\DcpHost.cs (1)
266_logger.LogInformation("Starting DCP with arguments: {Arguments}", dcpProcessSpec.Arguments);
Devcontainers\DevcontainerSettingsWriter.cs (1)
200logger.LogInformation("Port forwarding ({label}): {Url}", label, url);
DistributedApplicationLifecycle.cs (4)
26logger.LogInformation("Distributed application started. Press Ctrl+C to shut down."); 38logger.LogInformation("Aspire version: {Version}", informationalVersion); 43logger.LogInformation("Distributed application starting."); 44logger.LogInformation("Application host directory is: {AppHostDirectory}", configuration["AppHost:Directory"]);
Exec\ExecResourceManager.cs (1)
65_logger.LogInformation("Cancelled before exec resource was initialized.");
Orchestrator\ParameterProcessor.cs (8)
381logger.LogInformation("Parameter value deleted from deployment state for {ParameterName}.", parameterResource.Name); 384.LogInformation("Parameter resource {ResourceName} value has been deleted from user secrets.", parameterResource.Name); 388logger.LogInformation("Parameter value cleared for {ParameterName} (not deleted from user secrets).", parameterResource.Name); 391.LogInformation("Parameter resource {ResourceName} value has been cleared.", parameterResource.Name); 432.LogInformation("Parameter resource {ResourceName} has been resolved via user interaction.", parameterResource.Name); 442logger.LogInformation("Parameter value saved to deployment state for {ParameterName}.", parameterResource.Name); 550logger.LogInformation("Parameter values saved to deployment state."); 588logger.LogInformation("{SavedCount} parameter values saved to deployment state.", savedCount);
Pipelines\DistributedApplicationPipeline.cs (5)
72context.Logger.LogInformation("Initializing deployment for environment '{EnvironmentName}'", hostEnvironment.EnvironmentName); 81context.Logger.LogInformation("Deployment state will be loaded from: {StateFilePath}", stateFilePath); 104context.Logger.LogInformation("User declined to clear deployment state. Canceling pipeline execution."); 110context.Logger.LogInformation("Deleting deployment state file at {Path} due to --clear-cache flag", stateFilePath); 122context.Logger.LogInformation("Setting default deploy tag '{Tag}' for compute resource(s).", uniqueDeployTag);
Pipelines\Internal\FileDeploymentStateManager.cs (1)
86logger.LogInformation("Skipping deployment state save due to --clear-cache flag");
Pipelines\Internal\UserSecretsDeploymentStateManager.cs (1)
41logger.LogInformation("Azure resource connection strings saved to user secrets.");
Pipelines\PipelineStepHelpers.cs (1)
42context.Logger.LogInformation("Skipping push for resource '{ResourceName}' - destination is {Destination}, not Registry",
Publishing\ContainerRuntimeBase.cs (2)
128_logger.LogInformation("{RuntimeName} login to {RegistryServer} succeeded.", Name, registryServer); 167_logger.LogInformation(successLogTemplate, logArguments);
Publishing\DockerContainerRuntime.cs (1)
135Logger.LogInformation("docker buildx for {ImageName} succeeded.", imageName);
Publishing\ManifestPublisher.cs (1)
61_logger.LogInformation("Published manifest to: {ManifestPath}", fullyQualifiedPath);
Publishing\ManifestPublishingExtensions.cs (1)
72logger.LogInformation("Published manifest to: {ManifestPath}", fullyQualifiedPath);
Publishing\ResourceContainerImageManager.cs (6)
208logger.LogInformation("Starting to build container images"); 237logger.LogInformation("Building container image for resource {ResourceName}", resource.Name); 302logger.LogInformation("Building image: {ResourceName}", resource.Name); 313logger.LogInformation("Building image for {ResourceName} completed", resource.Name); 421logger.LogInformation("Building image: {ResourceName}", resource.Name); 483logger.LogInformation("Building image for {ResourceName} completed", resource.Name);
src\Shared\LoggingHelpers.cs (1)
25logger.LogInformation(message, dashboardUrl);
Utils\DockerfileHelper.cs (1)
46logger.LogInformation(
Utils\FileSystemService.cs (1)
103_logger?.LogInformation("Skipping cleanup of {Count} temporary files/directories due to ASPIRE_PRESERVE_TEMP_FILES configuration", _allocatedItems.Count);
Aspire.Hosting.Azure (16)
AzurePublishingContext.cs (1)
90Logger.LogInformation("No resources found in the model");
Provisioning\Internal\BaseProvisioningContextProvider.cs (5)
93_logger.LogInformation("Default subscription: {name} ({subscriptionId})", subscriptionResource.DisplayName, subscriptionResource.Id); 94_logger.LogInformation("Tenant: {tenantId}", tenantResource.TenantId); 140_logger.LogInformation("Using existing resource group {rgName}.", resourceGroup.Name); 151_logger.LogInformation("Creating resource group {rgName} in {location}...", resourceGroupName, location); 167_logger.LogInformation("Resource group {rgName} created.", resourceGroup.Name);
Provisioning\Internal\DefaultTokenCredentialProvider.cs (1)
103_logger.LogInformation("Using {credentialType} for provisioning.", credential.GetType().Name);
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (1)
400_logger.LogInformation("Using location {location} from existing resource group {resourceGroup}", _options.Location, selectedResourceGroup);
Provisioning\Provisioners\AzureProvisioner.cs (5)
198resourceLogger.LogInformation("Skipping {resourceName} because it is not a Bicep resource.", resource.AzureResource.Name); 205resourceLogger.LogInformation("Skipping {resourceName} because it is not configured to be provisioned.", resource.AzureResource.Name); 210resourceLogger.LogInformation("Using connection information stored in user secrets for {resourceName}.", resource.AzureResource.Name); 217resourceLogger.LogInformation("Resolving {resourceName} as existing resource...", resource.AzureResource.Name); 221resourceLogger.LogInformation("Provisioning {resourceName}...", resource.AzureResource.Name);
Provisioning\Provisioners\BicepProvisioner.cs (3)
180resourceLogger.LogInformation("Deploying {Name} to {ResourceGroup}", resource.Name, resourceGroup.Name); 200resourceLogger.LogInformation("Deployment started: {Url}", url); 215resourceLogger.LogInformation("Deployment of {Name} to {ResourceGroup} took {Elapsed}", resource.Name, resourceGroup.Name, sw.Elapsed);
Aspire.Hosting.Azure.AppContainers (1)
ContainerAppEnvironmentContext.cs (1)
58Logger.LogInformation(
Aspire.Hosting.Azure.Kusto.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.DevTunnels (15)
DevTunnelLoginManager.cs (2)
78_logger.LogInformation("Initiating dev tunnel login via {LoginProvider}", selectedProvider); 84_logger.LogInformation("User logged in to dev tunnel service as {Username} with {Provider}", loginStatus.Username, loginStatus.Provider);
DevTunnelResourceBuilderExtensions.cs (7)
144logger.LogInformation("Ensuring user is logged in to dev tunnel service"); 150logger.LogInformation("Creating dev tunnel '{TunnelId}'", tunnelResource.TunnelId); 184logger.LogInformation("Deleting {Count} unmodeled ports from dev tunnel '{TunnelId}': {Ports}", unmodeledPorts.Count, tunnelResource.TunnelId, string.Join(", ", unmodeledPorts.Select(p => p.PortNumber))); 194portLogger.LogInformation("Tunnel starting"); 211portLogger.LogInformation("Created dev tunnel port '{Port}' on tunnel '{Tunnel}' targeting endpoint '{Endpoint}' on resource '{TargetResource}'", portResource.TargetEndpoint.Port, portResource.DevTunnel.TunnelId, portResource.TargetEndpoint.EndpointName, portResource.TargetEndpoint.Resource.Name); 724portLogger.LogInformation("Forwarding from {PortUrl} to {TargetUrl} ({TargetResourceName}/{TargetEndpointName})", tunnelPortStatus.PortUri.ToString().TrimEnd('/'), portResource.TargetEndpoint.Url, portResource.TargetEndpoint.Resource.Name, portResource.TargetEndpoint.EndpointName); 760portLogger.LogInformation("Port forwarding stopped");
IDevTunnelClient.cs (6)
95logger.LogInformation("!! Anonymous access is allowed (inherited from tunnel) !!"); 101logger.LogInformation("Anonymous access is not allowed (tunnel allows it but port explicitly denies it)"); 107logger.LogInformation("!! Anonymous access is allowed (port explicitly allows it) !!"); 113logger.LogInformation("Anonymous access is not allowed (tunnel does not allow it and port explicitly denies it)"); 119logger.LogInformation("!! Anonymous access is allowed (tunnel allows it and port allows it) !!"); 125logger.LogInformation("Anonymous access is not allowed (tunnel does not allow it and port does not explicitly allow or deny it)");
Aspire.Hosting.DevTunnels.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.Docker (2)
DockerComposeEnvironmentContext.cs (1)
19logger.LogInformation("Creating Docker Compose resource for {ResourceName}", resource.Name);
EnvFile.cs (1)
97_logger?.LogInformation("Environment file '{EnvFilePath}' already exists and will be overwritten", _path);
Aspire.Hosting.DotnetTool.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.Foundry (5)
FoundryExtensions.cs (5)
262logger.LogInformation("Foundry Local could not be started. Ensure it's installed correctly: https://learn.microsoft.com/azure/ai-foundry/foundry-local/get-started (Error: {Error}).", e.Message); 323logger.LogInformation("Model {Model} downloaded successfully ({ModelId}).", model, deployment.ModelId); 351logger.LogInformation("Failed to start {Model}. Error: {Error}", model, e.Message); 361logger.LogInformation("Failed to start {Model}. Error: {Error}", model, progress.ErrorMessage); 369logger.LogInformation("Downloading model {Model}: {Progress:F2}%", model, progress.Percentage);
Aspire.Hosting.Foundry.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.GitHub.Models.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.JavaScript.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.Kafka.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.Kubernetes (1)
KubernetesEnvironmentContext.cs (1)
22logger.LogInformation("Creating Kubernetes resource for {ResourceName}", resource.Name);
Aspire.Hosting.Maui (2)
Utilities\MauiAndroidEnvironmentAnnotation.cs (1)
99logger.LogInformation("Generated environment targets file for Android: {Path}", generatedFilePath);
Utilities\MauiiOSEnvironmentAnnotation.cs (1)
99logger.LogInformation("Generated environment targets file for iOS: {Path}", generatedFilePath);
Aspire.Hosting.MySql.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.OpenAI.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.PostgreSQL.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
405logger.LogInformation("Certificate trust scope is set to 'Append', but Python resources do not support appending to the default certificate authorities; only OTLP certificate trust will be applied.");
Aspire.Hosting.RabbitMQ.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.RemoteHost (8)
JsonRpcServer.cs (8)
53_logger.LogInformation("Starting RemoteAppHost JsonRpc Server on {SocketPath}...", _socketPath); 64_logger.LogInformation("Goodbye!"); 70_logger.LogInformation("Starting JsonRpc server on named pipe: {SocketPath}", _socketPath); 111_logger.LogInformation("Server shutdown requested"); 121_logger.LogInformation("Server stopped"); 126_logger.LogInformation("Starting JsonRpc server on Unix domain socket: {SocketPath}", _socketPath); 171_logger.LogInformation("Server shutdown requested"); 181_logger.LogInformation("Server stopped");
Aspire.Hosting.Testing.Tests (1)
ResourceLoggerForwarderServiceTests.cs (1)
117resourceLogger.LogInformation("Test information message");
Aspire.Hosting.Tests (78)
Backchannel\AuxiliaryBackchannelRpcTargetTests.cs (7)
226logger.LogInformation("Hello from myresource"); 289logger1.LogInformation("Log from resource1"); 293logger2.LogInformation("Log from resource2"); 338logger1.LogInformation("Log from replica 1"); 342logger2.LogInformation("Log from replica 2"); 400logger.LogInformation("First log"); 401logger.LogInformation("Second log");
Backchannel\BackchannelLoggerProviderTests.cs (7)
16logger.LogInformation("Message 1"); 43logger.LogInformation("Message {Index}", i); 61logger.LogInformation("Before snapshot"); 66logger.LogInformation("After snapshot"); 82logger.LogInformation("Historical"); 93logger.LogInformation("Live 1"); 94logger.LogInformation("Live 2");
Dashboard\DashboardServiceTests.cs (25)
49logger.LogInformation(new string('1', LongLineCharacters)); 50logger.LogInformation(new string('2', LongLineCharacters)); 51logger.LogInformation(new string('3', LongLineCharacters)); 52logger.LogInformation("Test1"); 53logger.LogInformation("Test2"); 102logger.LogInformation(new string('1', DashboardServiceImpl.LogMaxBatchCharacters)); 104logger.LogInformation(new string('2', LongLineCharacters)); 105logger.LogInformation(new string('3', LongLineCharacters)); 106logger.LogInformation(new string('4', LongLineCharacters)); 169logger.LogInformation("Publishing resource."); 175logger.LogInformation("Waiting for the resource with a command. Required so added resource is always in the service's initial data collection"); 186logger.LogInformation("Calling WatchResources."); 193logger.LogInformation("Reading result from writer."); 196logger.LogInformation($"Initial data count: {update.InitialData.Resources.Count}"); 199logger.LogInformation($"Commands count: {resourceData.Commands.Count}"); 242logger.LogInformation("Calling WatchInteractions."); 253logger.LogInformation("Reading result from writer."); 261logger.LogInformation("Send result to reader."); 312logger.LogInformation("Calling WatchInteractions."); 324logger.LogInformation("Reading result from writer."); 359logger.LogInformation("Calling WatchInteractions."); 371logger.LogInformation("Reading result from writer."); 379logger.LogInformation("Send result to reader."); 418logger.LogInformation("Calling WatchInteractions."); 455logger.LogInformation("Calling WatchInteractions.");
DistributedApplicationTests.cs (17)
147logger.LogInformation("Force resource to start."); 151logger.LogInformation("Stop resource."); 155logger.LogInformation("Start resource (into waiting state)"); 159logger.LogInformation("Force resource to start."); 211logger.LogInformation("Start explicit start resource."); 228logger.LogInformation("Stop resource."); 232logger.LogInformation("Start resource again"); 419logger.LogInformation("Start explicit start resource."); 435logger.LogInformation("Stop resource."); 439logger.LogInformation("Start resource again"); 502logger.LogInformation("Start explicit start resource."); 520logger.LogInformation("Stop resource."); 527logger.LogInformation("Start resource again"); 635logger.LogInformation("Make sure services A and C are running"); 651logger.LogInformation("Calling PID API at {Url}", url); 658logger.LogInformation("PID API returned new value: {PID}", pid); 662logger.LogInformation("Success! We heard from all {ReplicaCount} replicas.", replicaCount);
Pipelines\DistributedApplicationPipelineTests.cs (6)
1146logger.LogInformation("Test log message from pipeline step"); 1183step1Logger.LogInformation("Message from step 1"); 1195step2Logger.LogInformation("Message from step 2"); 1238logger.LogInformation("About to fail"); 1287logger.LogInformation("Executing step {stepNumber}", stepNumber); 1356logger.LogInformation($"Information message");
Pipelines\PipelineLoggerProviderTests.cs (2)
99logger.LogInformation("Task 1 message"); 107logger.LogInformation("Task 2 message");
ResourceLoggerServiceTests.cs (12)
31logger.LogInformation("Hello, world!"); 71logger.LogInformation("Hello, world!"); 76logger.LogInformation("The third log"); 112logger.LogInformation("Hello, world!"); 142logger.LogInformation("The third log"); 158logger.LogInformation("Before watching!"); 174logger.LogInformation("While watching!"); 196logger.LogInformation("After watching!"); 205logger.LogInformation("While watching again!"); 233logger.LogInformation("Hello, world!"); 283logger.LogInformation("Hello, world!"); 333logger.LogInformation("Hello, world!");
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Hosting.Valkey.Tests (2)
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
Aspire.Playground.Tests (8)
Infrastructure\DistributedApplicationExtensions.cs (6)
217logger.LogInformation("Checking if project '{ProjectName}' has a migration endpoint", projectName); 224logger.LogInformation("Project '{ProjectName}' does not have a migration endpoint", projectName); 229logger.LogInformation("Attempting to apply EF migrations for project '{ProjectName}'", projectName); 242logger.LogInformation("Found {DbContextCount} DbContext types in project '{ProjectName}'", dbContextTypes.Count(), projectName); 250logger.LogInformation("Applying migrations for DbContext '{DbContextType}' in project '{ProjectName}'", dbContextType.FullName, projectName); 256logger.LogInformation("Migrations applied for DbContext '{DbContextType}' in project '{ProjectName}'", dbContextType.FullName, projectName);
tests\Shared\AsyncTestHelpers.cs (2)
222logger?.LogInformation("Start: {Message}", message); 233logger?.LogInformation("End: {Message}", message);
AzureFunctionsEndToEnd.Functions (4)
MyAzureBlobTrigger.cs (1)
16logger.LogInformation("C# blob trigger function invoked for 'myblobcontainer/{source}' with {message}...", blobName, triggerString);
MyAzureQueueTrigger.cs (1)
12logger.LogInformation("C# Queue trigger function processed: {Text}", message.MessageText);
MyEventHubTrigger.cs (1)
11logger.LogInformation("C# EventHub trigger function processed: {Count} messages", input.Length);
MyHttpTrigger.cs (1)
31logger.LogInformation("C# HTTP trigger function processed a request.");
AzureKusto.AppHost (1)
AzureKustoReadWriteDatabaseResourceBuilderExtensions.cs (1)
33logger.LogInformation("Skipping Kusto DB control command for non-emulator.");
AzureKusto.Worker (3)
IngestionWorker.cs (2)
32_logger.LogInformation("Starting ingestion worker"); 39_logger.LogInformation("Ingestion complete");
QueryWorker.cs (1)
44_logger.LogInformation("Query Results: {results}", results);
AzureSearch.ApiService (10)
Program.cs (10)
27logger.LogInformation("Deleting if exists"); 30logger.LogInformation("Creating index..."); 35logger.LogInformation("Uploading documents..."); 38logger.LogInformation("Running queries..."); 74logger.LogInformation("Document {@document}", result.Document); 83logger.LogInformation("Search the entire index for the term 'motel' and return only the HotelName field:\n"); 92logger.LogInformation("Apply a filter to the index to find hotels with a room cheaper than $100 per night, and return the hotelId and description:\n"); 105logger.LogInformation( 123logger.LogInformation("Search the hotel names for the term 'hotel':\n"); 171logger.LogInformation("Waiting for documents to be indexed...\n");
BasketService (4)
BasketService.cs (2)
61_logger.LogInformation("Checking out {Count} item(s) for BuyerId: {BuyerId}.", order.Items.Count, buyerId); 93_logger.LogInformation("Order Id {Id} submitted.", order.Id);
Repositories\RedisBasketRepository.cs (2)
53_logger.LogInformation("Problem occur persisting the item."); 57_logger.LogInformation("Basket item persisted successfully.");
CatalogDb (5)
CatalogDbInitializer.cs (5)
31logger.LogInformation("Database initialization completed after {ElapsedMilliseconds}ms", sw.ElapsedMilliseconds); 36logger.LogInformation("Seeding database"); 89logger.LogInformation("Seeding {CatalogBrandCount} catalog brands", brands.Count); 99logger.LogInformation("Seeding {CatalogTypeCount} catalog item types", types.Count); 109logger.LogInformation("Seeding {CatalogItemCount} catalog items", items.Count);
Consumer (2)
ConsumerWorker.cs (2)
24logger.LogInformation($"Consumed message [{result.Message?.Key}] = {result.Message?.Value}"); 36logger.LogInformation($"Received {i} messages. current offset is '{result!.Offset}'");
CustomResources.AppHost (4)
TalkingClockResource.cs (2)
71log.LogInformation("Starting Talking Clock..."); 96log.LogInformation("The time is {time}", DateTime.UtcNow);
TestResource.cs (2)
52logger.LogInformation("Starting test resource {ResourceName} with update interval {Interval} seconds", resource.Name, seconds); 70logger.LogInformation("Test resource {ResourceName} is now in state {State}", resource.Name, randomState);
dotnet-format (4)
CodeFormatter.cs (3)
32logger.LogInformation(string.Format(Resources.Formatting_code_files_in_workspace_0, formatOptions.WorkspaceFilePath)); 90logger.LogInformation(Resources.Formatted_code_file_0, documentWithError!.FilePath); 108logger.LogInformation(Resources.Format_complete_in_0_ms, workspaceStopwatch.ElapsedMilliseconds);
ReportWriter.cs (1)
21logger.LogInformation(Resources.Writing_formatting_report_to_0, reportFilePath);
dotnet-watch (3)
Program.cs (1)
270logger.LogInformation("Polling file watcher is enabled");
Watch\DotNetWatcher.cs (1)
149context.Logger.LogInformation("File changed: {Path}", changedFile.Value.Item.FilePath);
Watch\MsBuildFileSetFactory.cs (1)
80logger.LogInformation("MSBuild output from target '{TargetName}':", TargetName);
EventHubsConsumer (3)
Processor.cs (3)
28logger.LogInformation("Starting processor..."); 32logger.LogInformation(arg.Data.EventBody.ToString()); 49logger.LogInformation("Stopping processor...");
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (2)
Logging\AcceptanceTests.cs (2)
73logger.LogInformation("Log Information from Request"); 932logger.LogInformation("This is a log message 2");
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\AddressBinder.cs (1)
200context.Logger.LogInformation(CoreStrings.OverridingWithPreferHostingUrls, nameof(IServerAddressesFeature.PreferHostingUrls), joined);
Internal\KestrelServerImpl.cs (2)
357Trace.LogInformation("Config changed. Stopping the following endpoints: '{endpoints}'", string.Join("', '", urlsToStop)); 385Trace.LogInformation("Config changed. Starting the following endpoints: '{endpoints}'", string.Join("', '", urlsToStart));
Microsoft.CodeAnalysis.Rebuild (1)
MetadataCompilationOptions.cs (1)
27logger.LogInformation($"{optionName} - {value}");
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\BuildHostProcessManager.cs (1)
171_logger?.LogInformation(".NET BuildHost started from {ProcessPath} reloading to start from {DotnetPath} to match necessary SDK location.", processPath, dotnetPath);
Microsoft.Diagnostics.NETCore.Client (20)
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (15)
766_logger?.LogInformation($"Starting IPC server ({_ipcServerRouterFactory.IpcServerPath}) <--> {_netServerRouterFactory.ServerTransportName} server ({_netServerRouterFactory.ServerAddress}) router."); 773_logger?.LogInformation($"Stopping IPC server ({_ipcServerRouterFactory.IpcServerPath}) <--> {_netServerRouterFactory.ServerTransportName} server ({_netServerRouterFactory.ServerAddress}) router."); 835_logger?.LogInformation($"Broken ipc connection detected, aborting {_netServerRouterFactory.ServerTransportName} connection."); 872_logger?.LogInformation($"Broken {_netServerRouterFactory.ServerTransportName} connection detected, aborting ipc connection."); 964_logger?.LogInformation($"Starting IPC server ({_ipcServerRouterFactory.IpcServerPath}) <--> TCP client ({_tcpClientRouterFactory.TcpClientAddress}) router."); 971_logger?.LogInformation($"Stopping IPC server ({_ipcServerRouterFactory.IpcServerPath}) <--> TCP client ({_tcpClientRouterFactory.TcpClientAddress}) router."); 1018_logger?.LogInformation("Broken ipc connection detected, aborting tcp connection."); 1095_logger?.LogInformation($"Starting IPC client ({_ipcClientRouterFactory.IpcClientPath}) <--> {_tcpServerRouterFactory.ServerTransportName} server ({_tcpServerRouterFactory.ServerAddress}) router."); 1102_logger?.LogInformation($"Stopping IPC client ({_ipcClientRouterFactory.IpcClientPath}) <--> {_tcpServerRouterFactory.ServerTransportName} server ({_tcpServerRouterFactory.ServerAddress}) router."); 1152_logger?.LogInformation("Broken tcp connection detected, aborting ipc connection."); 1240_logger?.LogInformation($"Starting IPC client ({_ipcClientRouterFactory.IpcClientPath}) <--> TCP client ({_tcpClientRouterFactory.TcpClientAddress}) router."); 1246_logger?.LogInformation($"Stopping IPC client ({_ipcClientRouterFactory.IpcClientPath}) <--> TCP client ({_tcpClientRouterFactory.TcpClientAddress}) router."); 1297_logger?.LogInformation("Broken tcp connection detected, aborting ipc connection."); 1371_logger?.LogInformation("Broken ipc connection detected."); 1376_logger?.LogInformation("Broken tcp connection detected.");
DiagnosticsServerRouter\DiagnosticsServerRouterRunner.cs (5)
136routerFactory.Logger?.LogInformation("No runtime connected before timeout."); 137routerFactory.Logger?.LogInformation("Starting automatic shutdown."); 147routerFactory.Logger?.LogInformation($"Shutting down due to error: {ex.Message}"); 153routerFactory.Logger?.LogInformation("Shutting down due to cancelation request."); 162routerFactory.Logger?.LogInformation("Router stopped.");
Microsoft.DotNet.HotReload.Watch (9)
Build\BuildReporter.cs (1)
105_logger.LogInformation("MSBuild output:");
FileWatcher\FileWatcher.cs (1)
224logger.LogInformation("File changed: {FilePath}", fileChange.Value.Path);
HotReload\HotReloadDotNetWatcher.cs (3)
524_context.Logger.LogInformation("Affected projects:"); 528_context.Logger.LogInformation(" {ProjectName}", projectName); 909_context.Logger.LogInformation(GetMessage(items, kind));
src\sdk\src\Dotnet.Watch\HotReloadClient\Web\AbstractBrowserRefreshServer.cs (2)
150logger.LogInformation("Connecting to the browser ..."); 173logger.LogInformation("Browser connection established.");
UI\BuildOutput.cs (1)
41logger.LogInformation(line);
UI\RestartPrompt.cs (1)
16logger.LogInformation("Restarting");
Microsoft.Extensions.AI.Evaluation.Console (11)
Commands\CleanCacheCommand.cs (3)
40logger.LogInformation("Storage root path: {StorageRootPath}", storageRootPath); 41logger.LogInformation("Deleting expired cache entries..."); 49logger.LogInformation("Azure Storage endpoint: {EndpointUri}", endpointUri);
Commands\CleanResultsCommand.cs (4)
45logger.LogInformation("Storage root path: {StorageRootPath}", storageRootPath); 53logger.LogInformation("Azure Storage endpoint: {EndpointUri}", endpointUri); 67logger.LogInformation("Deleting all results..."); 74logger.LogInformation(
Commands\ReportCommand.cs (4)
55logger.LogInformation("Storage root path: {StorageRootPath}", storageRootPath); 63logger.LogInformation("Azure Storage endpoint: {EndpointUri}", endpointUri); 109logger.LogInformation( 134logger.LogInformation("Report: {OutputFilePath} [{Format}]", outputFilePath, format);
Microsoft.Extensions.Diagnostics.Testing.Tests (9)
Logging\FakeLogCollectorTests.cs (4)
49logger.LogInformation("Hello world!"); 91logger.LogInformation("Hello world!"); 130logger.LogInformation("Hello world!"); 162logger.LogInformation("Hello world!");
Logging\FakeLoggerTests.cs (5)
27logger.LogInformation("Hello"); 210logger.LogInformation("M2"); 277logger.LogInformation("Main message"); 305logger.LogInformation(NotIgnoredMessage1); 306logger.LogInformation(IgnoredMessage);
Microsoft.Extensions.Hosting (4)
Internal\ConsoleLifetime.cs (4)
104Logger.LogInformation("Application started. Press Ctrl+C to shut down."); 105Logger.LogInformation("Hosting environment: {EnvName}", Environment.EnvironmentName); 106Logger.LogInformation("Content root path: {ContentRoot}", Environment.ContentRootPath); 112Logger.LogInformation("Application is shutting down...");
Microsoft.Extensions.Hosting.Systemd (2)
SystemdLifetime.cs (2)
97Logger.LogInformation("Application started. Hosting environment: {EnvironmentName}; Content root path: {ContentRoot}", 106Logger.LogInformation("Application is shutting down...");
Microsoft.Extensions.Hosting.WindowsServices (2)
WindowsServiceLifetime.cs (2)
82Logger.LogInformation("Application started. Hosting environment: {EnvName}; Content root path: {ContentRoot}", 88Logger.LogInformation("Application is shutting down...");
Microsoft.Extensions.Telemetry.Tests (15)
Logging\ExtendedLoggerFactoryTests.cs (14)
215logger.LogInformation("Message 1"); 222logger.LogInformation("Message 2"); 262logger.LogInformation("Message1"); 296logger.LogInformation("Message1"); 322logger.LogInformation("Message1"); 354logger.LogInformation("Message1"); 361logger.LogInformation("Message2"); 373logger.LogInformation("Message3"); 379logger.LogInformation("Message4"); 422logger.LogInformation("Message1"); 444logger.LogInformation("Message"); 448logger.LogInformation("Message2"); 502logger.LogInformation("Message"); 506logger.LogInformation("Message2");
Logging\ExtendedLoggerTests.cs (1)
663logger.LogInformation("Hello");
Microsoft.ML.GenAI.Core (3)
Trainer\CausalLMSupervisedFineTuningTrainer.cs (3)
35this._logger?.LogInformation("Start training..."); 42this._logger?.LogInformation($"Epoch {i + 1}/{trainingOption.Epoch}"); 80_logger?.LogInformation($"Epoch {i + 1} loss: {losses.Average()}");
Microsoft.NET.Build.Containers (18)
AuthHandshakeMessageHandler.cs (1)
622_logger.LogInformation("Encountered a HttpRequestException {error} with message \"{message}\". Pausing before retry.", e.HttpRequestError, se.Message);
ContainerBuilder.cs (3)
106logger.LogInformation(Strings.ContainerBuilder_StartBuildingImage, imageName, string.Join(",", imageName), sourceImageReference); 235logger.LogInformation(Strings.ContainerBuilder_ImageUploadedToLocalDaemon, destinationImageReference, containerRegistry); 262logger.LogInformation(Strings.ContainerBuilder_ImageUploadedToRegistry, destinationImageReference, destinationImageReference.RemoteRegistry.RegistryName);
LocalDaemons\DockerCli.cs (1)
182_logger.LogInformation(Strings.LocalDocker_FailedToGetConfig, ex.Message);
Registry\Registry.cs (12)
539_logger.LogInformation(Strings.Registry_LayerExists, digest); 568_logger.LogInformation(Strings.Registry_TagUploadStarted, tag, RegistryName); 570_logger.LogInformation(Strings.Registry_TagUploaded, tag, RegistryName); 587_logger.LogInformation(Strings.Registry_LayerUploadStarted, digest, destinationRegistry.RegistryName); 590_logger.LogInformation(Strings.Registry_LayerExists, digest); 605_logger.LogInformation(Strings.Registry_LayerUploaded, digest, destinationRegistry.RegistryName); 630_logger.LogInformation(Strings.Registry_ConfigUploadStarted, configDigest); 632_logger.LogInformation(Strings.Registry_ConfigUploaded); 643_logger.LogInformation(Strings.Registry_TagUploadStarted, tag, RegistryName); 645_logger.LogInformation(Strings.Registry_TagUploaded, tag, RegistryName); 650_logger.LogInformation(Strings.Registry_ManifestUploadStarted, RegistryName, builtImage.ManifestDigest); 652_logger.LogInformation(Strings.Registry_ManifestUploaded, RegistryName);
Tasks\CreateImageIndex.cs (1)
82logger.LogInformation(Strings.BuildingImageIndex, destinationImageReference, string.Join(", ", images.Select(i => i.ManifestDigest)));
Microsoft.TemplateEngine.Core (1)
Operations\BalancedNesting.cs (1)
106processor.Config.Logger.LogInformation($"Balanced nesting depth < 0. CurrentBufferPosition = {currentBufferPosition}");
Microsoft.TemplateEngine.Edge (5)
BuiltInManagedProvider\GlobalSettingsTemplatePackageProvider.cs (2)
272_logger.LogInformation( 292_logger.LogInformation(
Installers\NuGet\NuGetLogger.cs (2)
71_baseLogger.LogInformation(data); 76_baseLogger.LogInformation(data);
Template\TemplateCreator.cs (1)
373_logger.LogInformation(
MilvusPlayground.ApiService (6)
Program.cs (6)
43logger.LogInformation("Collection created: book"); 73logger.LogInformation("Added vectors"); 76logger.LogInformation("Insert status: {0},", result.ToString()); 90logger.LogInformation("FieldName:{0}, IndexName:{1}, IndexId:{2}", info.FieldName, info.IndexName, info.IndexId); 93logger.LogInformation("Index created"); 98logger.LogInformation("Collection loaded");
Nats.Backend (1)
Program.cs (1)
31logger.LogInformation("Processing event: {Data}", msg.Data);
OrderProcessor (2)
OrderProcessingWorker.cs (2)
55_logger.LogInformation($"Processing Order at: {DateTime.UtcNow}"); 71_logger.LogInformation("""
Producer (2)
ContinuousProducerWorker.cs (1)
18logger.LogInformation($"{producer.Name} sent message '{message.Value}'");
IntermittentProducerWorker.cs (1)
23logger.LogInformation($"{producer.Name} sent 1000 messages, waiting 10 s");
Qdrant.ApiService (1)
Program.cs (1)
29logger.LogInformation(collectionInfo.ToString());
Seq.ApiService (1)
Program.cs (1)
21app.Logger.LogInformation("Range is between {Min} and {Max}", min, max);
ServiceBusWorker (4)
Consumer.cs (2)
20logger.LogInformation("Received message: {Message}", Encoding.UTF8.GetString(args.Message.Body)); 34logger.LogInformation("Stopping consumer...");
Producer.cs (2)
11logger.LogInformation("Starting producer..."); 25logger.LogInformation("Stopping producer...");
Stress.ApiService (5)
Program.cs (5)
173logger.LogInformation("Log entry {BatchIndex}-{LogEntryIndex}", i, j); 198logger.LogInformation("Log entry {BatchIndex}-{LogEntryIndex}: {Payload}", i, j, payload); 243logger.LogInformation("Writing logs canceled."); 256logger.LogInformation("This is log message {LogCount}.", logCount); 322logger.LogInformation(@"XML large content: {XmlLarge}
Stress.AppHost (8)
InteractionCommands.cs (6)
135logger.LogInformation("Input: {Name} = {Value}", input.Name, input.Value); 186logger.LogInformation("Input: {Label} = {Value}", updatedInput.Label, updatedInput.Value); 272logger.LogInformation("Input: {Name} = {Value}", updatedInput.Name, updatedInput.Value); 411logger.LogInformation("Input: {Name} = {Value}", updatedInput.Name, updatedInput.Value); 510logger.LogInformation("Input: {Name} = {Value}", updatedInput.Name, updatedInput.Value); 586logger.LogInformation("Input: {Name} = {Value}", input.Name, input.Value);
TestResource.cs (2)
71logger.LogInformation("Starting test resource {ResourceName} with update interval {Interval} seconds", resource.Name, seconds); 89logger.LogInformation("Test resource {ResourceName} is now in state {State}", resource.Name, randomState);
Stress.TelemetryService (2)
CounterMetrics.cs (1)
12logger.LogInformation("Starting CounterMetrics");
GaugeMetrics.cs (1)
13logger.LogInformation("Starting GaugeMetrics");
TestProject.WorkerA (1)
Worker.cs (1)
23_logger.LogInformation("Worker running at: {Time}", DateTimeOffset.Now);
WebPubSubWeb (1)
Program.cs (1)
71logger.LogInformation($"[SYSTEM] {userId} joined.");