// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; namespace Microsoft.VisualStudio.LanguageServices.SymbolSearch { /// /// Used so we can mock out logging in unit tests. /// internal interface ILogService { void LogException(Exception e, string text); void LogInfo(string text); } }