blob: 7007d7aed48e672ea8527aed09e4768fc40d82d9 [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"
Elliott Hughes807444f2012-02-03 19:59:42 -080018#include "stringprintf.h"
Elliott Hugheseb4f6142011-07-15 17:43:51 -070019
20#include <iostream>
21#include <unistd.h>
22
23#include "cutils/log.h"
24
Elliott Hughesf5a7a472011-10-07 14:31:02 -070025namespace art {
26
Elliott Hugheseb4f6142011-07-15 17:43:51 -070027static const int kLogSeverityToAndroidLogPriority[] = {
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -080028 ANDROID_LOG_VERBOSE, ANDROID_LOG_DEBUG, ANDROID_LOG_INFO, ANDROID_LOG_WARN,
29 ANDROID_LOG_ERROR, ANDROID_LOG_FATAL, ANDROID_LOG_FATAL
Elliott Hugheseb4f6142011-07-15 17:43:51 -070030};
31
32LogMessage::LogMessage(const char* file, int line, LogSeverity severity, int error)
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070033 : data_(new LogMessageData(line, severity, error)) {
Elliott Hughesc1e041a2012-02-06 18:27:24 -080034 const char* last_slash = strrchr(file, '/');
35 data_->file = (last_slash == NULL) ? file : last_slash + 1;
Elliott Hugheseb4f6142011-07-15 17:43:51 -070036}
37
Elliott Hughesc1e041a2012-02-06 18:27:24 -080038void LogMessage::LogLine(const char* message) {
Elliott Hughes0d39c122012-06-06 16:41:17 -070039 const char* tag = ProgramInvocationShortName();
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070040 int priority = kLogSeverityToAndroidLogPriority[data_->severity];
Elliott Hughesc1e041a2012-02-06 18:27:24 -080041 if (priority == ANDROID_LOG_FATAL) {
Elliott Hughes0d39c122012-06-06 16:41:17 -070042 LOG_PRI(priority, tag, "%s:%d] %s", data_->file, data_->line_number, message);
Elliott Hughesc1e041a2012-02-06 18:27:24 -080043 } else {
Elliott Hughes0d39c122012-06-06 16:41:17 -070044 LOG_PRI(priority, tag, "%s", message);
Elliott Hughesc1e041a2012-02-06 18:27:24 -080045 }
Elliott Hugheseb4f6142011-07-15 17:43:51 -070046}
Elliott Hughesf5a7a472011-10-07 14:31:02 -070047
48} // namespace art