blob: 2c34d8af7c5e9848d951f63abdfda2234a1e30c3 [file] [log] [blame]
Elliott Hughes42ee1422011-09-06 12:33:32 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Elliott Hugheseb4f6142011-07-15 17:43:51 -070016
17#include "logging.h"
18
19#include <iostream>
20#include <unistd.h>
21
22#include "cutils/log.h"
23
Elliott Hughesf5a7a472011-10-07 14:31:02 -070024namespace art {
25
Elliott Hugheseb4f6142011-07-15 17:43:51 -070026static const int kLogSeverityToAndroidLogPriority[] = {
Elliott Hughes3ea7e992011-10-11 18:48:16 -070027 ANDROID_LOG_VERBOSE, ANDROID_LOG_DEBUG, ANDROID_LOG_INFO,
28 ANDROID_LOG_WARN, ANDROID_LOG_ERROR, ANDROID_LOG_FATAL
Elliott Hugheseb4f6142011-07-15 17:43:51 -070029};
30
31LogMessage::LogMessage(const char* file, int line, LogSeverity severity, int error)
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070032 : data_(new LogMessageData(line, severity, error)) {
Elliott Hughes623cfe02011-09-16 19:44:31 -070033 const char* last_slash = strrchr(file, '/');
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070034 data_->file = (last_slash == NULL) ? file : last_slash + 1;
Elliott Hugheseb4f6142011-07-15 17:43:51 -070035}
36
Elliott Hughes42ee1422011-09-06 12:33:32 -070037void LogMessage::LogLine(const char* line) {
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070038 int priority = kLogSeverityToAndroidLogPriority[data_->severity];
39 LOG_PRI(priority, LOG_TAG, "%s:%d] %s", data_->file, data_->line_number, line);
Elliott Hugheseb4f6142011-07-15 17:43:51 -070040}
Elliott Hughesf5a7a472011-10-07 14:31:02 -070041
42} // namespace art