blob: 10d32832b87411a569d2547b4e1e92c0b675090d [file] [log] [blame]
#pragma once
#include <cstddef> // for size_t
#include <map>
#include <string>
#include <vector>
namespace watchdog
{
namespace dump
{
constexpr int maxTraceLen = 64; // characters
constexpr auto pathLogging = "/xyz/openbmc_project/logging";
constexpr auto levelPelError = "xyz.openbmc_project.Logging.Entry.Level.Error";
/**
* @brief Commit watchdog timeout handler failure event to log
*
* @param timeout - timeout interval in seconds
*/
void eventWatchdogTimeout(const uint32_t timeout);
} // namespace dump
} // namespace watchdog