blob: 4f0de714c45a26a3dc6127b164956c65bb7eb001 [file] [log] [blame]
// Copyright 2022 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 "rgbkbd/rgbkbd_daemon.h"
int main(int argc, char* argv[]) {
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderrIfTty);
LOG(INFO) << "Starting Chrome OS RGB Keyboard Daemon";
return rgbkbd::RgbkbdDaemon().Run();
}