OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // +build !appengine | |
6 | |
7 package logging | |
8 | |
9 import "github.com/Sirupsen/logrus" | |
10 | |
11 func ExampleLogrusLogger() { | |
12 // If it compiles, then logrus.Logger interface matches Logger interface . | |
13 var _ Logger = logrus.New() | |
14 } | |
OLD | NEW |