folly/folly/logging/LogMessage.cpp

/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <folly/logging/LogMessage.h>

#include <folly/logging/LogCategory.h>
#include <folly/logging/LoggerDB.h>
#include <folly/system/ThreadId.h>

system_clock;

namespace {
std::string getContextStringFromCategory(const folly::LogCategory* category) {}
} // namespace

namespace folly {

LogMessage::LogMessage(
    const LogCategory* category,
    LogLevel level,
    StringPiece filename,
    unsigned int lineNumber,
    StringPiece functionName,
    std::string&& msg)
    :{}

LogMessage::LogMessage(
    const LogCategory* category,
    LogLevel level,
    system_clock::time_point timestamp,
    StringPiece filename,
    unsigned int lineNumber,
    StringPiece functionName,
    std::string&& msg)
    :{}

StringPiece LogMessage::getFileBaseName() const {}

void LogMessage::sanitizeMessage() {}
} // namespace folly