blob: 4b0b984448355c80fee02ee2e97bf06fa09d672b [file] [log] [blame]
// Copyright 2013 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <base/files/file_path.h>
#include <base/functional/bind.h>
#include <base/logging.h>
#include <brillo/syslog_logging.h>
#include "lorgnette/daemon.h"
#include "lorgnette/debug_log.h"
namespace {
void OnStartup(const char* daemon_name) {
lorgnette::DebugLogManager logman;
if (logman.SetupDebugging()) {
LOG(INFO) << "Enabled extra logging for " << daemon_name;
}
}
} // namespace
int main(int argc, char** argv) {
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderrIfTty |
brillo::kLogHeader);
lorgnette::Daemon daemon(base::BindOnce(&OnStartup, argv[0]));
daemon.Run();
return 0;
}