Skip to content

Commit 12fda88

Browse files
committed
base core logger
1 parent 5f9e9bc commit 12fda88

File tree

5 files changed

+101
-22
lines changed

5 files changed

+101
-22
lines changed

Package.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ let package = Package(
88
products: [
99
// Products define the executables and libraries a package produces, and make them visible to other packages.
1010
.library(
11-
name: "swift-logger",
12-
targets: ["swift-logger"]),
11+
name: "SwiftLogger",
12+
targets: ["SwiftLogger"]),
1313
],
1414
dependencies: [
1515
// Dependencies declare other packages that this package depends on.
@@ -19,10 +19,10 @@ let package = Package(
1919
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2020
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2121
.target(
22-
name: "swift-logger",
22+
name: "SwiftLogger",
2323
dependencies: []),
2424
.testTarget(
25-
name: "swift-loggerTests",
26-
dependencies: ["swift-logger"]),
25+
name: "SwiftLoggerTests",
26+
dependencies: ["SwiftLogger"]),
2727
]
2828
)

Sources/SwiftLogger/Logger.swift

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
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+
}

Sources/swift-logger/swift_logger.swift

-6
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
}

Tests/swift-loggerTests/swift_loggerTests.swift

-11
This file was deleted.

0 commit comments

Comments
 (0)