X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fprobes%2Flttng.c;h=ab233c1a4452184f410f86acd285f90f7692da0b;hb=5a15f70c5211ff4a398171a6971586e2948eb419;hp=8a0dd4b8acdcefe06015d37d2599bb01ef7b907b;hpb=69bd2039594fa6ef366381ed7406582cb1d4e522;p=lttng-modules.git diff --git a/src/probes/lttng.c b/src/probes/lttng.c index 8a0dd4b8..ab233c1a 100644 --- a/src/probes/lttng.c +++ b/src/probes/lttng.c @@ -121,7 +121,7 @@ int __init lttng_logger_init(void) /* /dev/lttng-logger */ ret = misc_register(&logger_dev); if (ret) { - printk(KERN_ERR "Error creating LTTng logger device\n"); + printk(KERN_ERR "LTTng: Error creating logger device\n"); goto error; } @@ -130,7 +130,7 @@ int __init lttng_logger_init(void) S_IRUGO | S_IWUGO, NULL, <tng_logger_proc_ops, NULL); if (!lttng_logger_dentry) { - printk(KERN_ERR "Error creating LTTng logger proc file\n"); + printk(KERN_ERR "LTTng: Error creating logger proc file\n"); ret = -ENOMEM; goto error_proc; }