diff options
Diffstat (limited to 'source/Utility/Logging.cpp')
-rw-r--r-- | source/Utility/Logging.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Utility/Logging.cpp b/source/Utility/Logging.cpp index b97a88b5edcb..c0856e5d9267 100644 --- a/source/Utility/Logging.cpp +++ b/source/Utility/Logging.cpp @@ -1,9 +1,8 @@ //===-- Logging.cpp ---------------------------------------------*- C++ -*-===// // -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// @@ -18,6 +17,7 @@ using namespace lldb_private; static constexpr Log::Category g_categories[] = { {{"api"}, {"log API calls and return values"}, LIBLLDB_LOG_API}, + {{"ast"}, {"log AST"}, LIBLLDB_LOG_AST}, {{"break"}, {"log breakpoints"}, LIBLLDB_LOG_BREAKPOINTS}, {{"commands"}, {"log command argument parsing"}, LIBLLDB_LOG_COMMANDS}, {{"comm"}, {"log communication activities"}, LIBLLDB_LOG_COMMUNICATION}, |