Skip to content

Commit

Permalink
Add FileLogger and AbstractLogger classes
Browse files Browse the repository at this point in the history
  • Loading branch information
gcollura committed Mar 25, 2016
1 parent 1a3898c commit 1894eca
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions classes/log/AbstractLogger.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/*
* 2013-2015 Dimitrios Karvounaris, Innovacy
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Please read the included README for instructions.
*
* @author Dimitrios Karvounaris <d.karvounaris@innovacy.com>
* @copyright 2013-2015 Dimitrios Karvounaris, Innovacy
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

class AbstractLogger extends AbstractLoggerCore
{

}
27 changes: 27 additions & 0 deletions classes/log/FileLogger.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/*
* 2013-2015 Dimitrios Karvounaris, Innovacy
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Please read the included README for instructions.
*
* @author Dimitrios Karvounaris <d.karvounaris@innovacy.com>
* @copyright 2013-2015 Dimitrios Karvounaris, Innovacy
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

class FileLogger extends FileLoggerCore
{

}

0 comments on commit 1894eca

Please sign in to comment.