1 //===-- debugserver_LogCallback.cpp -----------------------------*- 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 //------------------------------------------------------------------------------
10 // this function is defined in debugserver.cpp, but is needed to link the
11 // debugserver Common library. It is for logging only, so it is left
12 // unimplemented here.
13 //------------------------------------------------------------------------------
14 
15 #include <stdint.h>
16 #include <stdarg.h>
17 
18 void FileLogCallback(void *baton, uint32_t flags, const char *format,
19                      va_list args) {}
20