Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Elastic.Documentation.Serialization;

// This configures the source generation for json (de)serialization.
// This configures the source generation for JSON (de)serialization.

[JsonSourceGenerationOptions(WriteIndented = true, UseStringEnumConverter = true)]
[JsonSerializable(typeof(GenerationState))]
Expand Down
2 changes: 1 addition & 1 deletion src/tooling/docs-assembler/Cli/ContentSourceCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public async Task<int> Match([Argument] string? repository = null, [Argument] st
var matches = assembleContext.Configuration.Match(repo, refName);
if (matches == null)
{
logger.LogError("'{Repository}' '{BranchOrTag}' combination not found in configuration.", repo, refName);
logger.LogInformation("'{Repository}' '{BranchOrTag}' combination not found in configuration.", repo, refName);
await githubActionsService.SetOutputAsync("content-source-match", "false");
await githubActionsService.SetOutputAsync("content-source-name", "");
}
Expand Down
Loading