blob: 3ad5039e333c518d5381de1f12d21ce43b46c588 [file] [log] [blame]
// Copyright 2023 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <iostream>
#include <base/command_line.h>
#include <brillo/syslog_logging.h>
#include <libhwsec-foundation/tpm_error/tpm_error_uma_reporter.h>
#include "device_management/device_management_daemon.h"
int main(int argc, char* argv[]) {
base::CommandLine::Init(argc, argv);
base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
int flags = brillo::kLogToSyslog;
if (cl->HasSwitch("log_to_stderr")) {
flags |= brillo::kLogToStderr;
}
brillo::InitLog(flags);
// Set TPM metrics client ID.
hwsec_foundation::SetTpmMetricsClientID(
hwsec_foundation::TpmMetricsClientID::kDeviceManagement);
return device_management::DeviceManagementDaemon().Run();
}