blob: aa2cc20cd4b62756fa65f29a9c52cfa7a7668da0 [file] [log] [blame]
// Copyright 2018 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/command_line.h>
#include <base/logging.h>
#include <brillo/syslog_logging.h>
#include "crosdns/crosdns_daemon.h"
int main(int argc, char* argv[]) {
int log_flags = brillo::kLogToSyslog | brillo::kLogToStderrIfTty;
brillo::InitLog(log_flags);
LOG(INFO) << "Starting CrOS DNS daemon";
crosdns::CrosDnsDaemon daemon;
return daemon.Run();
}