mirror of
https://github.com/kean/Pulse.git
synced 2026-05-30 21:07:33 +00:00
17 lines
444 B
Swift
17 lines
444 B
Swift
// The MIT License (MIT)
|
||
//
|
||
// Copyright (c) 2020–2022 Alexander Grebenyuk (github.com/kean).
|
||
|
||
#if DEBUG || PULSE_DEMO
|
||
|
||
enum MockStoreConfiguration {
|
||
/// Delay logs with random intervals.
|
||
static let isDelayingLogs = true
|
||
/// Add the same logs indefinitely with an interval.
|
||
static let isIndefinite = false
|
||
/// If true uses the default store that support remote logging.
|
||
static let isUsingDefaultStore = true
|
||
}
|
||
|
||
#endif
|