ngtk/LoggerKit

View on GitHub
Sources/LoggerKit/LogContext.swift

Summary

Maintainability
A
0 mins
Test Coverage
public protocol LogContextProtocol {
    var function: String { get set }
    var file: String { get set }
    var line: Int { get set }
}

public struct LogContext: LogContextProtocol {
    public var function: String
    public var file: String
    public var line: Int
}