src/Microsoft.Azure.WebJobs.Host/Loggers/IHostInstanceLogger.cs (11 lines of code) (raw):

// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; using Microsoft.Azure.WebJobs.Host.Protocols; namespace Microsoft.Azure.WebJobs.Host.Loggers { internal interface IHostInstanceLogger { Task LogHostStartedAsync(HostStartedMessage message, CancellationToken cancellationToken); } }