Magic

3.0.3

A Swift alternative for Objective-C's DLog macro.
ArtSabintsev/Magic

What's New

Updated for Xcode 9

2018-09-17T03:20:51Z

Project works with Xcode 9.

Magic

A Swift alternative for Objective-C's DLog macro.

CocoaPods Carthage Compatible SwiftPM Compatible CocoaPods CocoaPods

Background

If you're like me, you miss seeing the filename, method name, and/or line number in your print statements in your Swift projects.

Fear not, Magic is here to bring you back to the good old days of DLog.

This extension was previously known as PrintlnMagic.

Installation

CocoaPods

For Swift 3 support:

pod 'Magic'

For Swift 2.3 support:

pod 'Magic', :git => 'https://github.com/ArtSabintsev/Magic.git', :branch => 'swift2.3'

Carthage

For Swift 3 support:

github "ArtSabintsev/Magic"

For Swift 2.3 support:

github "ArtSabintsev/Magic" "swift2.3"

Swift Package Manager

.Package(url: "https://github.com/ArtSabintsev/Magic.git", majorVersion: 3)

Setup

Replace all the print() statements in your project with magic().

Example

Before Magic, your console will display the following from print():


This is a test string.

After Magic, your console will display the following from magic():

ViewController.viewDidLoad()[17]: This is a test string.

// Where:
//     ViewController is the filename
//     viewDidLoad() is the name of the function
//     [17] is the line number

Created and maintainted by

Arthur Ariel Sabintsev

Description

  • Swift Tools
View More Packages from this Author

Dependencies

  • None
Last updated: Wed May 24 2023 11:42:42 GMT-0900 (Hawaii-Aleutian Daylight Time)