Adding log file location variable to StORMDebug struct

This commit is contained in:
Josef Zoller 2018-10-09 23:26:18 +02:00
parent 6a5ad420a6
commit 7b6da48488
1 changed files with 4 additions and 0 deletions

View File

@ -13,4 +13,8 @@ public struct StORMDebug {
/// The global debug state for all classes inheriting from the StORM superclass.
/// When true, certain methods will generate a debug message under certain conditions.
public static var active = false
/// The location of the log file.
/// The default location is relative, "StORMlog.txt"
public static var location = "./StORMlog.txt"
}