]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/report-error: tweak summary message
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Wed, 25 Jun 2014 15:31:38 +0000 (16:31 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 29 Jun 2014 07:59:20 +0000 (08:59 +0100)
* We don't want everyone to remove their identifying info, just if they
  feel the need to
* Split lines for clarity
* A couple of grammar/spelling tweaks

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/report-error.bbclass

index 15adc97b52d503653b262568c6725ec6ab6359a2..5fe2355842ce008c14f0dac0489b754f1db8c407 100644 (file)
@@ -59,8 +59,8 @@ python errorreport_handler () {
             if(len(failures) > 0):
                 filename = "error_report_" + e.data.getVar("BUILDNAME")+".txt"
                 datafile = errorreport_savedata(e, jsondata, filename)
-                bb.note("The errors of this build are stored in: %s. You can send the errors to an upstream server by running: send-error-report %s [server]" % (datafile, datafile))
-                bb.note("The contents of these logs will be posted in public if you use the above script. Please ensure you remove any identifying or propriety information before sending.")
+                bb.note("The errors for this build are stored in %s\nYou can send the errors to an upstream server by running:\n  send-error-report %s [server]" % (datafile, datafile))
+                bb.note("The contents of these logs will be posted in public if you use the above command with the default server. If you need to do so, please ensure you remove any identifying or proprietary information before sending.")
 }
 
 addhandler errorreport_handler