blob: a2c0377d13995e9c70e377ad7b2ea5ebe244a1b0 [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <base/command_line.h>
#include <base/logging.h>
#include <brillo/syslog_logging.h>
#include "arc/keymaster/daemon.h"
int main(int argc, char** argv) {
// Keymasterd takes no command line arguments.
base::CommandLine::Init(argc, argv);
// Logging to system logs in /var/log/arc.log.
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderr);
LOG(INFO) << "Running Daemon";
arc::keymaster::Daemon daemon;
return daemon.Run();
}