blob: 3c75033043212e96b28b9284547309ecfa95c8f9 [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 <atomic>
#include <csignal>
#include <base/logging.h>
#include <brillo/syslog_logging.h>
#include "iioservice/daemon/daemon.h"
int main() {
brillo::OpenLog("iioservice", true /*log_pid*/);
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogHeader);
iioservice::Daemon daemon;
daemon.Run();
LOG(INFO) << "Daemon stopped";
return 0;
}