1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-11-09 13:10:24 +01:00

Add separator to Log

This commit is contained in:
2022-02-12 14:52:10 +01:00
parent b5c1960260
commit 0ad5049785
3 changed files with 10 additions and 4 deletions

View File

@@ -49,4 +49,10 @@ class Log {
}
}
static func separator(as verbosity: Verbosity = .info) {
if verbosity.isApplicable() {
print("==================================")
}
}
}