Closed
Bug 1041181
Opened 11 years ago
Closed 11 years ago
Investigate repeated & redundant GMPInstallManager log lines
Categories
(Firefox :: General, defect)
Firefox
General
Tracking
()
People
(Reporter: gfritzsche, Assigned: bbondy)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
1.91 KB,
patch
|
gfritzsche
:
review+
Sylvestre
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
It might not be any real issue, but log lines (and hence maybe actual activity?) are triggered repeatedly at the end of download/install of openh264.
We should at least check what's going on there.
[...]
1405788611481 GMPExtractor.install INFO Installing /Users/gfritzsche/Library/Caches/TemporaryItems/gmp-gmpopenh264.zip...
1405788611494 GMPExtractor.install INFO libgmpopenh264.dylib was successfully extracted to: /Users/gfritzsche/Library/Application Support/Firefox/Profiles/r77cq19u.dev3/gmp-gmpopenh264/libgmpopenh264.dylib
1405788611495 GMPExtractor.install INFO gmpopenh264.info was successfully extracted to: /Users/gfritzsche/Library/Application Support/Firefox/Profiles/r77cq19u.dev3/gmp-gmpopenh264/gmpopenh264.info
1405788611495 GMPExtractor.install INFO /Users/gfritzsche/Library/Caches/TemporaryItems/gmp-gmpopenh264.zip was installed successfully
1405788611496 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.lastUpdate to value: 1405788611
1405788611496 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.lastUpdate to value: 1405788611
1405788611497 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.version to value: 1.0
1405788611497 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.version to value: 1.0
1405788611497 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.version to value: 1.0
1405788611498 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.path to value: /Users/gfritzsche/Library/Application Support/Firefox/Profiles/r77cq19u.dev3/gmp-gmpopenh264
1405788611498 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.path to value: /Users/gfritzsche/Library/Application Support/Firefox/Profiles/r77cq19u.dev3/gmp-gmpopenh264
1405788611498 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.path to value: /Users/gfritzsche/Library/Application Support/Firefox/Profiles/r77cq19u.dev3/gmp-gmpopenh264
1405788611498 GMPPrefs.set INFO Setting pref: media.gmp-gmpopenh264.path to value: /Users/gfritzsche/Library/Application Support/Firefox/Profiles/r77cq19u.dev3/gmp-gmpopenh264
Flags: firefox-backlog+
Assignee | ||
Comment 1•11 years ago
|
||
I've noticed too but haven't figured out why yet. It's not actually hitting the code multiple times, it's a log issue only. I think possibly related to the way I'm getting the logger and adding a dump output. I'll investigate but it's not of high priority.
Assignee: nobody → netzen
Points: 3 → 2
Updated•11 years ago
|
Blocks: WebRTC-OpenH264
Reporter | ||
Comment 2•11 years ago
|
||
If it helps to compare, definitely properly working Log.jsm usage here:
http://hg.mozilla.org/mozilla-central/annotate/330ba968ed61/browser/experiments/Experiments.jsm#l130
Assignee | ||
Comment 3•11 years ago
|
||
Verified only 1 line of output happens when the log is enabled and 0 when it is not.
Attachment #8462270 -
Flags: review?(georg.fritzsche)
Assignee | ||
Comment 4•11 years ago
|
||
Problem was that it returns the same logger for each name, so each time it returned a logger, it would append another dump on it.
Reporter | ||
Updated•11 years ago
|
Attachment #8462270 -
Flags: review?(georg.fritzsche) → review+
Assignee | ||
Comment 5•11 years ago
|
||
Updated•11 years ago
|
Whiteboard: [openh264-uplift]
Comment 6•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 34
Updated•11 years ago
|
Iteration: --- → 34.1
QA Whiteboard: [qa?]
Updated•11 years ago
|
QA Whiteboard: [qa?] → [qa+]
QA Contact: anthony.s.hughes
Reporter | ||
Comment 7•11 years ago
|
||
Comment on attachment 8462270 [details] [diff] [review]
bug1041181.diff
Approval Request Comment
[Feature/regressing bug #]: OpenH264 integration.
[User impact if declined]: When using test-logging, every logged line will cause more logging line duplicates being printed.
[Describe test coverage new/current, TBPL]: Manual testing, fine on m-c.
[Risks and why]: Low-risk, contained to logging for this being preffed on.
[String/UUID change made/needed]: None.
Attachment #8462270 -
Flags: approval-mozilla-aurora?
Updated•11 years ago
|
status-firefox33:
--- → affected
status-firefox34:
--- → fixed
Updated•11 years ago
|
Attachment #8462270 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Comment 8•11 years ago
|
||
Whiteboard: [openh264-uplift]
Updated•11 years ago
|
Iteration: 34.1 → 34.2
I do not believe this needs QA verification. Please need-info me if you think otherwise.
QA Whiteboard: [qa+] → [qa-]
You need to log in
before you can comment on or make changes to this bug.
Description
•