File tree 5 files changed +101
-22
lines changed
5 files changed +101
-22
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ let package = Package(
8
8
products: [
9
9
// Products define the executables and libraries a package produces, and make them visible to other packages.
10
10
. library(
11
- name: " swift-logger " ,
12
- targets: [ " swift-logger " ] ) ,
11
+ name: " SwiftLogger " ,
12
+ targets: [ " SwiftLogger " ] ) ,
13
13
] ,
14
14
dependencies: [
15
15
// Dependencies declare other packages that this package depends on.
@@ -19,10 +19,10 @@ let package = Package(
19
19
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
20
20
// Targets can depend on other targets in this package, and on products in packages this package depends on.
21
21
. target(
22
- name: " swift-logger " ,
22
+ name: " SwiftLogger " ,
23
23
dependencies: [ ] ) ,
24
24
. testTarget(
25
- name: " swift-loggerTests " ,
26
- dependencies: [ " swift-logger " ] ) ,
25
+ name: " SwiftLoggerTests " ,
26
+ dependencies: [ " SwiftLogger " ] ) ,
27
27
]
28
28
)
Original file line number Diff line number Diff line change
1
+ import Foundation
2
+
3
+ private enum LogLevel : String {
4
+ case info = " 🔵 "
5
+ case debug = " 🟡 "
6
+ case warning = " 🟠 "
7
+ case error = " 🔴 "
8
+ }
9
+
10
+ private func print( _ object: Any ) {
11
+ #if DEBUG
12
+ Swift . print ( object)
13
+ #endif
14
+ }
15
+
16
+ public typealias log = Logger
17
+
18
+ public final class Logger {
19
+ private static var isLogEnable : Bool {
20
+ #if DEBUG
21
+ return true
22
+ #else
23
+ return false
24
+ #endif
25
+ }
26
+
27
+ private class func sourceFileName( filePath: String ) -> String {
28
+ let components = filePath. components ( separatedBy: " / " )
29
+ if let componentLast = components. last {
30
+ return componentLast
31
+ } else {
32
+ return " "
33
+ }
34
+ }
35
+ }
36
+
37
+ public extension Logger {
38
+
39
+ class func error(
40
+ filename: String = #file,
41
+ line: Int = #line,
42
+ funcName: String = #function,
43
+ _ object: Any
44
+ ) {
45
+ if isLogEnable {
46
+ print ( " \( LogLevel . error. rawValue) ERROR [[ \( sourceFileName ( filePath: filename) ) ]: \( line) \( funcName) ] " )
47
+ print ( object)
48
+ }
49
+ }
50
+
51
+ class func warning(
52
+ filename: String = #file,
53
+ line: Int = #line,
54
+ funcName: String = #function,
55
+ _ object: Any
56
+ ) {
57
+ if isLogEnable {
58
+ print ( " \( LogLevel . warning. rawValue) WARNING [[ \( sourceFileName ( filePath: filename) ) ]: \( line) \( funcName) ] " )
59
+ print ( object)
60
+ }
61
+ }
62
+
63
+ class func debug(
64
+ filename: String = #file,
65
+ line: Int = #line,
66
+ funcName: String = #function,
67
+ _ object: Any
68
+ ) {
69
+ if isLogEnable {
70
+ print ( " \( LogLevel . debug. rawValue) DEBUG [[ \( sourceFileName ( filePath: filename) ) ]: \( line) \( funcName) ] " )
71
+ print ( object)
72
+ }
73
+ }
74
+
75
+ class func info(
76
+ filename: String = #file,
77
+ line: Int = #line,
78
+ funcName: String = #function,
79
+ _ object: Any
80
+ ) {
81
+ if isLogEnable {
82
+ print ( " \( LogLevel . info. rawValue) INFO [[ \( sourceFileName ( filePath: filename) ) ]: \( line) \( funcName) ] " )
83
+ print ( object)
84
+ }
85
+ }
86
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ import XCTest
2
+ @testable import SwiftLogger
3
+
4
+ final class SwiftLoggerTests : XCTestCase {
5
+ func testExample( ) throws {
6
+ // This is an example of a functional test case.
7
+ // Use XCTAssert and related functions to verify your tests produce the correct
8
+ // results.
9
+ }
10
+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments