Log

public enum Log: String

Log Need for print to console with emoji

  • Undocumented

    Declaration

    Swift

    public enum Log: String
  • Undocumented

    Declaration

    Swift

    public enum Log: String
  • Undocumented

    Declaration

    Swift

    public enum Log: String
  • Undocumented

    Declaration

    Swift

    public enum Log: String
  • Undocumented

    Declaration

    Swift

    public enum Log: String
  • Log items in console. Only in debug mode. In console its look like: 💚 DEBUG: ViewController.swift.18:viewDidLoad(): ATATAT

    Declaration

    Swift

    public func log(_ items: Any..., file: String = #file, line: Int = #line, function: String = #function)

    Parameters

    items

    items for print

    file

    file name where log was called

    line

    line where log was called

    function

    function name where log was called

  • Log dictionary objects.

    In console its look like:

    💙 INFO: ViewController.swift.20:viewDidLoad(): Headers key : value

    Header : accept

    Declaration

    Swift

    public func log(_ name:String, parameters:DictionaryAlias?, file: String = #file, line: Int = #line, function: String = #function)