]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/lib/nodejs/lib/thrift/log.js
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / nodejs / lib / thrift / log.js
CommitLineData
f67539c2
TL
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20var util = require('util');
21
22var disabled = function () {};
23var logFunc = console.log;
24var logLevel = 'error'; // default level
25
26function factory(level) {
27 return function () {
28 // better use spread syntax, but due to compatibility,
29 // use legacy method here.
30 var args = ['thrift: [' + level + '] '].concat(Array.from(arguments));
31 return logFunc(util.format.apply(null, args));
32 };
33}
34
35var trace = disabled;
36var debug = disabled;
37var error = disabled;
38var warning = disabled;
39var info = disabled;
40
41exports.setLogFunc = function (func) {
42 logFunc = func;
43};
44
45var setLogLevel = exports.setLogLevel = function (level) {
46 trace = debug = error = warning = info = disabled;
47 logLevel = level;
48 switch (logLevel) {
49 case 'trace':
50 trace = factory('TRACE');
51 case 'debug':
52 debug = factory('DEBUG');
53 case 'error':
54 error = factory('ERROR');
55 case 'warning':
56 warning = factory('WARN');
57 case 'info':
58 info = factory('INFO');
59 }
60};
61
62// set default
63setLogLevel(logLevel);
64
65exports.getLogLevel = function () {
66 return logLevel;
67};
68
69exports.trace = function () {
70 return trace.apply(null, arguments);
71};
72
73exports.debug = function () {
74 return debug.apply(null, arguments);
75};
76
77exports.error = function () {
78 return error.apply(null, arguments);
79};
80
81exports.warning = function () {
82 return warning.apply(null, arguments);
83};
84
85exports.info = function () {
86 return info.apply(null, arguments);
87};