Last active
May 12, 2017 12:40
-
-
Save mrister/33fb153af6092ffc5b1ae52c80895f50 to your computer and use it in GitHub Desktop.
Loggly log a compound object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let compoundObject = { | |
name: { | |
first: 'Matthew', | |
last: 'Setter' | |
}, | |
occupation: 'Freelance Developer & Technical Writer' | |
}; | |
// log the object | |
log.info(compoundObject); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment