WIP: logging utilities

This commit is contained in:
John Rommel Estropia
2016-05-05 09:44:14 +08:00
parent 099dcfab68
commit 0073d038e0
46 changed files with 791 additions and 396 deletions

View File

@@ -7,6 +7,7 @@
//
import UIKit
import CoreStore
// MARK: - AppDelegate
@@ -21,6 +22,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
application.statusBarStyle = .LightContent
print(InMemoryStore())
print(SQLiteStore())
print(LocalStorageOptions.None)
print([.AllowSynchronousLightweightMigration, .PreventProgressiveMigration] as LocalStorageOptions)
return true
}
}