diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2009-12-07 12:00:59 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-12-07 18:33:22 +0100 |
commit | d3a2dbf844d81b4b9c9ad6044563c294e7a48cac (patch) | |
tree | ffb1d56a5a8be56d9b67a5c2737aeb83e3a3688c /tools | |
parent | 849884508ecbe2d220131840e4cc7c32ca24ebe3 (diff) | |
download | talos-op-linux-d3a2dbf844d81b4b9c9ad6044563c294e7a48cac.tar.gz talos-op-linux-d3a2dbf844d81b4b9c9ad6044563c294e7a48cac.zip |
perf probe: Use pr_debug for debug message
Use pr_debug() for "missing vmlinux" debugging message.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: systemtap <systemtap@sources.redhat.com>
Cc: DLE <dle-develop@lists.sourceforge.net>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <20091207170059.19230.51459.stgit@dhcp-100-2-132.bos.redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/builtin-probe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-probe.c b/tools/perf/builtin-probe.c index a58e11b7ea80..8993a1f4e1c3 100644 --- a/tools/perf/builtin-probe.c +++ b/tools/perf/builtin-probe.c @@ -194,8 +194,8 @@ int cmd_probe(int argc, const char **argv, const char *prefix __used) if (session.need_dwarf) die("Could not open vmlinux/module file."); - pr_warning("Could not open vmlinux/module file." - " Try to use symbols.\n"); + pr_debug("Could not open vmlinux/module file." + " Try to use symbols.\n"); goto end_dwarf; } |