aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-01-13 07:39:24 +0000
committerjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-01-13 07:39:24 +0000
commiteef5ccc61ffb2a22e66a03a52fa36b04b9e9b560 (patch)
tree58e345aac28b37f8270e5ba21cf6534ea32f5088 /src
parentBreakpad: Fix Emacs mode settings mingled with copyright notice text. (diff)
downloadbreakpad-eef5ccc61ffb2a22e66a03a52fa36b04b9e9b560.tar.xz
Breakpad processor: Opening a map file is not an error.
a=jimblandy, r=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@485 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r--src/processor/basic_source_line_resolver.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processor/basic_source_line_resolver.cc b/src/processor/basic_source_line_resolver.cc
index 1802299b..1aff2d1d 100644
--- a/src/processor/basic_source_line_resolver.cc
+++ b/src/processor/basic_source_line_resolver.cc
@@ -393,7 +393,7 @@ bool BasicSourceLineResolver::Module::LoadMap(const string &map_file) {
return false;
}
- BPLOG(ERROR) << "Opening " << map_file;
+ BPLOG(INFO) << "Opening " << map_file;
FILE *f = fopen(map_file.c_str(), "rt");
if (!f) {