mastodon-ios/Mastodon/Scene/Profile/CachedProfileViewModel.swift

20 lines
587 B
Swift
Raw Normal View History

2021-04-01 08:39:15 +02:00
//
// CachedProfileViewModel.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-3-31.
//
import Foundation
import CoreDataStack
final class CachedProfileViewModel: ProfileViewModel {
2021-04-13 13:46:42 +02:00
init(context: AppContext, mastodonUser: MastodonUser) {
super.init(context: context, optionalMastodonUser: mastodonUser)
logger.log(level: .debug, "\((#file as NSString).lastPathComponent, privacy: .public)[\(#line, privacy: .public)], \(#function, privacy: .public): [Profile] user[\(mastodonUser.id)] profile: \(mastodonUser.acctWithDomain)")
2021-04-01 08:39:15 +02:00
}
}