Closed
Bug 579497
Opened 15 years ago
Closed 15 years ago
Add logging for missing command-line handlers
Categories
(Toolkit :: Startup and Profile System, defect)
Tracking
()
RESOLVED
FIXED
mozilla2.0b2
People
(Reporter: benjamin, Assigned: benjamin)
References
Details
Attachments
(1 file)
2.55 KB,
patch
|
mossop
:
review+
|
Details | Diff | Splinter Review |
More helping extension authors figure out what they've done wrong. If there's a cateogry for a command-line-handler but we can't getService it, warn on the console.
Attachment #457943 -
Flags: review?(dtownsend)
Updated•15 years ago
|
Attachment #457943 -
Flags: review?(dtownsend) → review+
Assignee | ||
Comment 1•15 years ago
|
||
Whoops, http://hg.mozilla.org/mozilla-central/rev/c271aa43c7ab was pushed for beta2.
Target Milestone: --- → mozilla2.0b2
Assignee | ||
Updated•15 years ago
|
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 2•15 years ago
|
||
Comment 3•14 years ago
|
||
Comment on attachment 457943 [details] [diff] [review]
console logging for missing commandline handlers, rev. 1
>+static void
>+LogConsoleMessage(const nsString& fmt, ...)
>+{
>+ va_list args;
>+ va_start(args, fmt);
References and varags don't mix (va_start tries to take the address of fmt...)
You need to log in
before you can comment on or make changes to this bug.
Description
•