Kill some log-messages along the way (IOS-157)
This commit is contained in:
parent
1a1b2d44a4
commit
c4db4afcdb
|
@ -33,7 +33,6 @@ extension StatusTableViewCell {
|
||||||
if statusView.frame == .zero {
|
if statusView.frame == .zero {
|
||||||
// set status view width
|
// set status view width
|
||||||
statusView.frame.size.width = tableView.frame.width - containerViewHorizontalMargin
|
statusView.frame.size.width = tableView.frame.width - containerViewHorizontalMargin
|
||||||
logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): did layout for new cell")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
switch viewModel.value {
|
switch viewModel.value {
|
||||||
|
|
|
@ -16,8 +16,6 @@ final class StatusTableViewCell: UITableViewCell {
|
||||||
|
|
||||||
static let marginForRegularHorizontalSizeClass: CGFloat = 64
|
static let marginForRegularHorizontalSizeClass: CGFloat = 64
|
||||||
|
|
||||||
let logger = Logger(subsystem: "StatusTableViewCell", category: "View")
|
|
||||||
|
|
||||||
weak var delegate: StatusTableViewCellDelegate?
|
weak var delegate: StatusTableViewCellDelegate?
|
||||||
var disposeBag = Set<AnyCancellable>()
|
var disposeBag = Set<AnyCancellable>()
|
||||||
var _disposeBag = Set<AnyCancellable>()
|
var _disposeBag = Set<AnyCancellable>()
|
||||||
|
@ -44,11 +42,6 @@ final class StatusTableViewCell: UITableViewCell {
|
||||||
super.init(coder: coder)
|
super.init(coder: coder)
|
||||||
_init()
|
_init()
|
||||||
}
|
}
|
||||||
|
|
||||||
deinit {
|
|
||||||
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extension StatusTableViewCell {
|
extension StatusTableViewCell {
|
||||||
|
|
Loading…
Reference in New Issue