summaryrefslogtreecommitdiffstats
path: root/meta/classes/report-error.bbclass
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-02-27 12:15:19 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-10 10:47:39 +0000
commitd5a28582be7515d68ea7a44df37e1401fee36f8b (patch)
tree04c16b0fb2b01d4b26f87101f6b61e612c259400 /meta/classes/report-error.bbclass
parenta8b1dede04433368cc1a3e57add2507ccefc04d3 (diff)
downloadpoky-d5a28582be7515d68ea7a44df37e1401fee36f8b.tar.gz
report-error: Update information on the submission process
The new send-error-report will prompt for review of items and the server is now specified by using the -s argument. (From OE-Core rev: c195d70f35ea522854dcdd53aeae60eec6b7ad7e) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/report-error.bbclass')
-rw-r--r--meta/classes/report-error.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/report-error.bbclass b/meta/classes/report-error.bbclass
index 5f155e332b..9edf2ceb31 100644
--- a/meta/classes/report-error.bbclass
+++ b/meta/classes/report-error.bbclass
@@ -66,8 +66,8 @@ python errorreport_handler () {
66 if(len(failures) > 0): 66 if(len(failures) > 0):
67 filename = "error_report_" + e.data.getVar("BUILDNAME")+".txt" 67 filename = "error_report_" + e.data.getVar("BUILDNAME")+".txt"
68 datafile = errorreport_savedata(e, jsondata, filename) 68 datafile = errorreport_savedata(e, jsondata, filename)
69 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)) 69 bb.note("The errors for this build are stored in %s\nYou can send the errors to a reports server by running:\n send-error-report %s [-s server]" % (datafile, datafile))
70 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.") 70 bb.note("The contents of these logs will be posted in public if you use the above command with the default server. Please ensure you remove any identifying or proprietary information when prompted before sending.")
71} 71}
72 72
73addhandler errorreport_handler 73addhandler errorreport_handler