Open
Bug 1407313
Opened 8 years ago
Updated 3 years ago
constant TwoMBsInBytes definition typo in RollingFileLogger
Categories
(Firefox for iOS :: General, defect, P3)
Tracking
()
NEW
Tracking | Status | |
---|---|---|
fxios | + | --- |
People
(Reporter: me, Unassigned)
Details
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36
Steps to reproduce:
I just read the RollingFileLogger.swift source code
Actual results:
I find the typo of constant TwoMBsInBytes definition:
fileprivate static let TwoMBsInBytes: Int64 = 2 * 100000
Its defined as 200KB.
Expected results:
The definition should be:
fileprivate static let TwoMBsInBytes: Int64 = 2 * 1000000
Updated•8 years ago
|
Updated•8 years ago
|
Priority: -- → P3
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•