blob: 947bfc097989e8a8ae7eb8fdb470aa78ec8bcb08 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import 'base/logger.dart';
final Logger defaultLogger = new StdoutLogger();
Logger get logger => defaultLogger;
void printInfo(String message) => logger.info(message);
void printError(String message) => logger.error(message);