1 //===-- LLDBServerUtilities.h -----------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "llvm/ADT/StringRef.h" 10 11 #include <string> 12 13 namespace lldb_private { 14 namespace lldb_server { 15 16 class LLDBServerUtilities { 17 public: 18 static bool SetupLogging(const std::string &log_file, 19 const llvm::StringRef &log_channels, 20 uint32_t log_options); 21 }; 22 } 23 } 24