sapling/eden/fs/telemetry/StructuredLoggerFactory.h
Chad Austin 987dd994b6 add a StructuredLogger instance to ServerState
Summary:
Allocate and hook up a StructuredLogger at startup if the EdenConfig
has the appropriate values set.

Reviewed By: simpkins

Differential Revision: D18071821

fbshipit-source-id: 3996b6644bbf0c16bb3b9950d57a79d4619a1656
2019-11-13 15:23:38 -08:00

29 lines
570 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <memory>
namespace facebook {
namespace eden {
class EdenConfig;
class StructuredLogger;
struct SessionInfo;
/**
* Returns a StructuredLogger appropriate for this platform and Eden
* configuration.
*/
std::unique_ptr<StructuredLogger> makeDefaultStructuredLogger(
const EdenConfig&,
SessionInfo sessionInfo);
} // namespace eden
} // namespace facebook