1 /* 2 * Copyright (c) Facebook, Inc. 3 * Licensed under the Apache License, Version 2.0 (the "License") 4 */ 5 6 #pragma once 7 8 #include <cstdint> 9 10 namespace ebpf { 11 namespace pyperf { 12 13 void setVerbosity(uint64_t verbosityLevel); 14 void logInfo(uint64_t logLevel, const char* fmt, ...); 15 16 } // namespace pyperf 17 } // namespace ebpf 18