Alpha Framework 4.0.0 API Documentation

LogProviderFile
in package
implements LogProviderInterface

Generic log file class to encapsulate common file I/O and rendering calls.

Tags
since
1.0
author

John Collins dev@alphaframework.org

license

http://www.opensource.org/licenses/bsd-license.php The BSD License

copyright

Copyright (c) 2022, John Collins (founder of Alpha Framework). All rights reserved.

Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the
following conditions are met:

* Redistributions of source code must retain the above
  copyright notice, this list of conditions and the
  following disclaimer.
* Redistributions in binary form must reproduce the above
  copyright notice, this list of conditions and the
  following disclaimer in the documentation and/or other
  materials provided with the distribution.
* Neither the name of the Alpha Framework nor the names
  of its contributors may be used to endorse or promote
  products derived from this software without specific
  prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Table of Contents

Interfaces

LogProviderInterface
Interface that defines the methods required for a logging provider.

Properties

$maxSize  : int
The maximum size of the log file in megabytes before a backup is created and a new file is created, default is 5.
$path  : string
The log file path.

Methods

renderLog()  : string
Renders a log as a HTML table.
setMaxSize()  : mixed
Set the max log size in megabytes.
setPath()  : mixed
Set the file path.
writeLine()  : void
Writes a line of data to the log.
backupFile()  : void
Creates a backup of the log file, which has the same file name and location as the current file plus a timestamp appended.
checkFileSize()  : int
Returns the size in megabytes of the log file on disc.

Properties

$maxSize

The maximum size of the log file in megabytes before a backup is created and a new file is created, default is 5.

private int $maxSize = 5
Tags
since
1.0

Methods

renderLog()

Renders a log as a HTML table.

public renderLog(mixed $cols) : string
Parameters
$cols : mixed

The headings to use when rendering the log.

Return values
string

setMaxSize()

Set the max log size in megabytes.

public setMaxSize(int $maxSize) : mixed
Parameters
$maxSize : int
Tags
since
1.0

setPath()

Set the file path.

public setPath(string $path) : mixed
Parameters
$path : string
Tags
since
2.0

writeLine()

Writes a line of data to the log.

public writeLine(mixed $line) : void
Parameters
$line : mixed

backupFile()

Creates a backup of the log file, which has the same file name and location as the current file plus a timestamp appended.

private backupFile() : void
Tags
since
1.0

checkFileSize()

Returns the size in megabytes of the log file on disc.

private checkFileSize() : int
Tags
since
1.0
Return values
int

        
On this page

Search results