# jetformbuilder/3.6.5.2/modules/logger/interfaces/logger-it.php

JetFormBuilder — Dynamic Blocks Form Builder, version 3.6.5.2. 16 lines.

- Page: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.2/code/modules/logger/interfaces/logger-it.php
- Raw: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.2/raw/modules/logger/interfaces/logger-it.php
- Modified: 2023-11-21T13:04:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetformbuilder/3.6.5.2/code/modules/logger/interfaces/logger-it.php#L10-L20`.

```php
<?php


namespace JFB_Modules\Logger\Interfaces;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

interface Logger_It {

	public function log( string $message, $value = null );

}

```
