mirror of
https://github.com/chesskit-app/chesskit-engine.git
synced 2026-05-19 15:50:35 +00:00
15 lines
155 B
Objective-C
15 lines
155 B
Objective-C
//
|
|
// Logging.m
|
|
// ChessKitEngine
|
|
//
|
|
|
|
#import "Logging.h"
|
|
|
|
@implementation Logging
|
|
|
|
+ (void)print:(NSString *)message {
|
|
DLog(@"%@", message)
|
|
}
|
|
|
|
@end
|