mirror of
https://github.com/apache/impala.git
synced 2026-01-01 09:00:42 -05:00
Change-Id: I4620b77ba731e134a3e48883e8ae7ee3820ed584 Reviewed-on: http://gerrit.ent.cloudera.com:8080/612 Reviewed-by: Henry Robinson <henry@cloudera.com> Tested-by: jenkins
30 lines
840 B
Thrift
30 lines
840 B
Thrift
// Copyright 2012 Cloudera Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
namespace cpp impala
|
|
namespace java com.cloudera.impala.thrift
|
|
|
|
// Types to support Impala log forwarding.
|
|
|
|
// Convenience type to map between log4j levels and glog severity
|
|
enum TLogLevel {
|
|
VLOG_3,
|
|
VLOG_2
|
|
VLOG,
|
|
INFO,
|
|
WARN,
|
|
ERROR,
|
|
FATAL
|
|
}
|