Skip to content

Instantly share code, notes, and snippets.

@keithweaver
Created May 19, 2017 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keithweaver/dad4a10e79606d8d2218fb77176b5674 to your computer and use it in GitHub Desktop.
Save keithweaver/dad4a10e79606d8d2218fb77176b5674 to your computer and use it in GitHub Desktop.
Lumberjack SDK Example
<?php
// Install using composer and run: $ composer require kweaver00/lumberjack_php dev-master
require_once "/vendor/autoload.php";
$lumberjack = new \Kweaver\Lumberjack\Lumberjack();
$lumberjack->setAppKey("YOUR_APP_KEY");
$lumberjack->setAPIKey("YOUR_API_CODE");
$lumberjack->log("TAG","Content goes here.", "Verbose");
// Title, Content, Level of importance
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment