Kill some log-messages along the way (IOS-157)

This commit is contained in:
Nathan Mattes 2023-05-22 14:13:40 +02:00
parent 1a1b2d44a4
commit c4db4afcdb
2 changed files with 0 additions and 8 deletions

View File

@ -33,7 +33,6 @@ extension StatusTableViewCell {
if statusView.frame == .zero {
// set status view width
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 {

View File

@ -15,8 +15,6 @@ import MastodonUI
final class StatusTableViewCell: UITableViewCell {
static let marginForRegularHorizontalSizeClass: CGFloat = 64
let logger = Logger(subsystem: "StatusTableViewCell", category: "View")
weak var delegate: StatusTableViewCellDelegate?
var disposeBag = Set<AnyCancellable>()
@ -44,11 +42,6 @@ final class StatusTableViewCell: UITableViewCell {
super.init(coder: coder)
_init()
}
deinit {
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
}
}
extension StatusTableViewCell {