blob: dea30040232fd8f3290df6c8acc216150926f02d [file] [log] [blame]
// Copyright 2020 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 <brillo/syslog_logging.h>
#include "minios/daemon.h"
int main() {
brillo::OpenLog("minios", /*log_pid=*/true);
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogHeader);
return minios::Daemon().Run();
}