Skip to content

Commit ff890d0

Browse files
fix logger (#48)
* fix logger extension access * bump version
1 parent 42c1340 commit ff890d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

FearlessUtils.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'FearlessUtils'
11-
s.version = '0.13.0'
11+
s.version = '0.13.1'
1212
s.summary = 'Utility library that implements clients specific logic to interact with substrate based networks'
1313

1414
s.homepage = 'https://github.com/soramitsu/fearless-utils-iOS'

FearlessUtils/Classes/Common/Logger.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public protocol SDKLoggerProtocol {
88
func error(message: String, file: String, function: String, line: Int)
99
}
1010

11-
public extension SDKLoggerProtocol {
11+
extension SDKLoggerProtocol {
1212
func verbose(_ message: String, file: String = #file, function: String = #function, line: Int = #line) {
1313
verbose(message: message, file: file, function: function, line: line)
1414
}

0 commit comments

Comments
 (0)