forked from SwiftyBeaver/SBObjectiveCWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilteredViewController.m
More file actions
49 lines (37 loc) · 1002 Bytes
/
FilteredViewController.m
File metadata and controls
49 lines (37 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// FilteredViewController.m
// SBObjectiveCWrapper
//
// Created by Reese McLean on 12/23/15.
// Copyright © 2015 Reese McLean. All rights reserved.
//
#import "FilteredViewController.h"
@import SBObjectiveCWrapper;
@interface FilteredViewController ()
@end
@implementation FilteredViewController
- (void)viewDidLoad {
[super viewDidLoad];
SBLogVerbose(@"View Did Load");
SBLogWarning(@"Message with formatting: %@", @"Hello");
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
SBLogInfo(@"Did Receive Memory Warning");
}
- (IBAction)logVerbose:(id)sender {
SBLogVerbose(@"This is a verbose message.");
}
- (IBAction)logDebug:(id)sender {
SBLogDebug(@"This is a debug message.");
}
- (IBAction)logInfo:(id)sender {
SBLogInfo(@"This is an info message.");
}
- (IBAction)logWarning:(id)sender {
SBLogWarning(@"This is a warning message.");
}
- (IBAction)logError:(id)sender {
SBLogError(@"This is an error message.");
}
@end