parent
9e93eb6ce6
commit
7d388b09c2
6 changed files with 19 additions and 17 deletions
|
@ -24,7 +24,8 @@ public class ForEachHandlebarsBlock<TModel> : HandlebarsBlockBase
|
|||
/// Gets or sets the callback that is called when nothing is found.
|
||||
/// </summary>
|
||||
public Action<EncodedTextWriter, BlockHelperOptions, Context, Arguments>?
|
||||
NothingFound { get; set; }
|
||||
NothingFound
|
||||
{ get; set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override string HelperName { get; }
|
||||
|
|
|
@ -31,7 +31,8 @@ public class ParseYamlHeader<TModel> : OperationBase
|
|||
}
|
||||
|
||||
public Func<Entity, string, Exception, ParseYamlHeaderErrorHandling>?
|
||||
EntityError { get; set; }
|
||||
EntityError
|
||||
{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the header should be removed
|
||||
|
|
|
@ -282,7 +282,7 @@ public class PipelineRunner
|
|||
.ToListAsync();
|
||||
|
||||
// Gather all the output.
|
||||
this.logger.Debug("{Pipeline:l}: Gathering output", this.Pipeline);
|
||||
this.logger.Verbose("{Pipeline:l}: Gathering output", this.Pipeline);
|
||||
this.Outputs.Clear();
|
||||
this.Outputs.AddRange(output);
|
||||
}
|
||||
|
@ -328,7 +328,7 @@ public class PipelineRunner
|
|||
|
||||
this.signaledDoneWithInputs = true;
|
||||
|
||||
this.logger.Debug(
|
||||
this.logger.Verbose(
|
||||
"{Pipeline:l}: Signaling {Count:n0} dependencies done",
|
||||
this.Pipeline,
|
||||
this.Incoming.Count);
|
||||
|
|
Reference in a new issue