Questions tagged [xcglogger]

A debug log framework for Swift.

XCGLogger is a debug log framework for . For further information, refer to the GitHub page.

28 questions
1
vote
1 answer

SQLite.swift: Use XCGLogger

I'm using SQLite.swift library in my iOS project. Now I'm logging SQLite sentences using db.trace(println) as suggested in the documentation, but I want to use the XCGLogger library with something like log.info(). Somebody knows how to do it?
Alex Bibiano
  • 633
  • 1
  • 6
  • 19
1
vote
1 answer

xcglogger via cocoapods results in No Such Module

caveat: new to cocoapods... I have a swift xcode project and I'm trying to use the XCGLogger pod, but after adding it to the podfile, (with use_frameworks! ), pod install -- everything looks good: but when I put the import XCGLogger in my…
Billy Pilgrim
  • 1,842
  • 3
  • 22
  • 32
0
votes
0 answers

Store crash report into file

I had built a macOS application. When I delivered the app to the client, the app is crashing at some points. So I thought of putting the log file somewhere in the client's system so whenever the app crashed then I will have the exact location where…
0
votes
1 answer

The app gets crashed because of xcglogger swift

I am using the XCGLogger with correct compatibility (My Swift language is 3.2 and XCGLogger version is 5.0.5) But still the app crashes with the following crash report 8 XCGLogger 0x105994420 _T0s11_StringCoreV6appendyABFTfq4gXn_n + 280 9 XCGLogger…
Rakesh
  • 302
  • 3
  • 19
0
votes
1 answer

XCGLogger - How to set the Log Levels for All Logs

I am using XCGLogger in my project, how to set the log level for all. I want to log all the logs like (debug, info,error,severe,verbose etc.,), for this how can i set the log level.
sakthi
  • 19
  • 3
0
votes
1 answer

XGCLogger: Retrieve logs from device?

How can you configure XCGLogger to log so that you can access log files from individual devices being used for testing?
Marcus Leon
  • 55,199
  • 118
  • 297
  • 429
0
votes
1 answer

How can I remove the XcodeColors dependancy from XCGLogger?

With the latest updates to Xcode 8 when I try and do a Carthage update I'm getting the following: xcodebuild[9502:2418269] [MT] PluginLoading: Required plug-in compatibility UUID 8A66E736-A720-4B3C-92F1-33D9962C69DF for plug-in at path…
Cormac
  • 43
  • 4
0
votes
2 answers

How to prefix all my logs with XCGLogger

I wanted to add a prefix to all my logs. I tried to subclass XCGLogger to override logln(...) or debug(...) functions. But I am facing two difficulties while using this Compiler always give me error (see picture). I don't know how to customize…
ryancrunchi
  • 465
  • 2
  • 16
0
votes
1 answer

How do I turn off the date and time for each log?

I don't really need the date and time for each log that prints to the xcode console. I've tried log.dateFormatter = nil but that didn't seem to do anything for me.
Raghav
  • 114
  • 2
  • 12
0
votes
2 answers

Trouble installing XCGLogger swift_2.0

I am trying to install XCGLogger Swift 2.0 using xcode7.4 beta using cocoapods. Here is my pod file. platform :ios, '8.0' use_frameworks! target 'City Summer School' do pod 'Firebase', '>= 2.3.3' pod 'XCGLogger', :git =>…
Nim
  • 356
  • 3
  • 17
0
votes
0 answers

How to install XCGLogger?

I want to add the XCGLogger Framework to my project. At the XCGLogger github page is a "how to use"-section and a also a demo project. Some tasks are not quite clear for me. Therefore some questions: "Add the XCGLogger project as a subproject to…
user1376392
  • 31
  • 1
  • 3
0
votes
0 answers

use the XCGLogger error XCTest no loading

XCGLogger works in both iOS and OS X projects. It is a Swift library intended for use in Swift projects. I get the following error: Cannot load underlying module for "XCTest" What can be the cause of this error and how can I fix this?
0
votes
0 answers

XCGLogger not printing logs out of main classes

I'm writing a little game with SpriteKit using XCGLogger to write logs. The problem is that i can only see logs messages from the GameScene class in the log file, even when I use XCGLogger in other classes like maps, characters, etc. I defined in…
Jorge Vega Sánchez
  • 7,430
  • 14
  • 55
  • 77
1
2