Home
last modified time | relevance | path

Searched refs:log (Results 1 – 25 of 33) sorted by last modified time

12

/dokuwiki/lib/plugins/logviewer/lang/vi/
H A Dnolog.txt1 Không có mục nhật ký log nào cho cơ sở nhật ký log và ngày tháng đã chọn
H A Dintro.txt3 Giao diện này cho phép bạn xem các nhật ký log khác nhau do DokuWiki viết. Theo mặc định, không nên có nhiều
4 tại đây (nó còn tùy thuộc vào [[doku>config:dontlog|cài đặt nhật ký log]] của bạn). Tuy nhiên, nếu có gì đó không ổn, rất có thể
7 Xin lưu ý rằng **tệp nhật ký log có thể chứa thông tin nhạy cảm** như mật khẩu, đường dẫn hoặc các bí mật khác.
8 Đảm bảo sắp xếp lại các nhật ký log một cách thích hợp khi đăng chúng lên diễn đàn hoặc trong các báo cáo lỗi
/dokuwiki/inc/lang/en/
H A Dlogin.txt3 You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
H A Dsubscr_single.txt16 To cancel the page notifications, log into the wiki at
H A Dsubscr_digest.txt13 To cancel the page notifications, log into the wiki at
H A Dsubscr_list.txt10 To cancel the page notifications, log into the wiki at
/dokuwiki/lib/plugins/config/lang/pt-br/
H A Dlang.php139 $lang['dontlog'] = 'Desabilita o registro de log para os seguintes tipos de logs.';
177 $lang['hidewarnings'] = 'Não exiba nenhum aviso emitido pelo PHP. Isso pode facilitar a transição para PHP8+. Os avisos ainda serão registrados no log de erros e devem ser relatados.';
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js252 self.log('iframe loaded');
H A Dcompatibility.js22 console.log(line);
H A Dfileuploader.js874 log: function(str){ method in qq.UploadHandlerAbstract
875 if (this._options.debug && window.console) console.log('[uploader] ' + str);
1012 self.log('iframe loaded');
1062 this.log("converting iframe's innerHTML to JSON");
1063 this.log("innerHTML = " + doc.body.innerHTML);
1218 this.log("xhr - server response received");
1219 this.log("responseText = " + xhr.responseText);
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md85 Stacktraces will be printed on log level `debug`.
93 Simple colored log messages can be printed by you using the convinence methods ``success()`` (green), ``info()`` (cyan),
130 The CLI class is a fully PSR-3 compatible logger (printing colored log data to STDOUT and STDERR). This is useful when
138 The resulting object then can be passed as the logger instance. The difference between the two is in adjusted method signatures (with appropriate type hinting) only. Be sure you have the suggested `psr/log` composer package installed when using these classes.
159 Convenience methods for all log levels are available. Placeholder interpolation as described in PSR-3 is available, too.
162 The default log level of your script can be set by overwriting the `$logdefault` member.
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DCLI.php25 $this->log('emergency', $message, $context);
39 $this->log('alert', $message, $context);
52 $this->log('critical', $message, $context);
64 $this->log('error', $message, $context);
78 $this->log('warning', $message, $context);
91 $this->log('notice', $message, $context);
104 $this->log('info', $message, $context);
115 $this->log('debug', $message, $context);
123 public function log($level, $message, array $context = array()) function in splitbrain\\phpcli\\CLI
H A DPSR3CLIv3.php20 public function log($level, string|\Stringable $message, array $context = []): void function in splitbrain\\phpcli\\PSR3CLIv3
/dokuwiki/inc/Utf8/
H A DSort.php54 Logger::getInstance(Logger::LOG_DEBUG)->log(
/dokuwiki/lib/plugins/logviewer/lang/pt/
H A Dintro.txt4 aqui (depende das suas [[doku>config:dontlog|configurações de log]]). No entanto, se algo der errado, as chances são altas de você encontrar informações úteis sobre o problema. Todos os horários são UTC!
6 Esteja ciente de que **arquivos de log podem conter informações confidenciais** como senhas, caminhos ou outros segredos.
/dokuwiki/lib/plugins/logviewer/lang/pt-br/
H A Dintro.txt4 aqui (depende das suas [[doku>config:dontlog|log settings]]). No entanto, se algo der errado, as chances são altas
7 Esteja ciente de que **arquivos de log podem conter informações confidenciais** como senhas, caminhos ou outros segredos.
/dokuwiki/lib/plugins/logviewer/
H A Dstyle.less32 .log {
/dokuwiki/inc/lang/da/
H A Dsubscr_single.txt16 For at stoppe notifikationer om sideændringer, log ind på wikien på
/dokuwiki/lib/plugins/config/lang/pt/
H A Dlang.php134 $lang['logretain'] = 'Quantos dias manter no log.';
172 $lang['hidewarnings'] = 'Não exibir nenhum aviso (Warning) emitido pelo PHP. Isso pode facilitar a transição para o PHP8+. Avisos ainda serão registrados no log de erros e devem ser reportados.';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php153 * Make sure that the log never gets larger than this
756 * Current log size
788 * Real-time log file pointer
796 * Real-time log file size
812 * Real-time log file wrap boolean
4471 // the most useful log for SSH2
4498 // needs to be defined and that the resultant log file will be capped out at self::LOG_MAX_SIZE.
4499 // the earliest part of the log file is denoted by the first <<< START >>> and is not going to necessarily
4670 * Returns a log of the packets that have been sent and received.
4686 $log
[all...]
/dokuwiki/inc/
H A DLogger.php8 * Log messages to a daily log file
19 /** @var string what kind of log is this */
27 * @param string $facility The type of log
43 * @param string $facility The type of log
55 * Convenience method to directly log to the error log
57 * @param string $message The log message
58 * @param mixed $details Any details that should be added to the log entry
61 * @return bool has a log been written?
65 return self::getInstance(self::LOG_ERROR)->log(
112 public function log($message, $details = null, $file = '', $line = 0) global() function in dokuwiki\\Logger
[all...]
H A DTaskRunner.php131 $log = ChangeLog::parseLogLine($lines[$i]);
132 if ($log === false) {
136 if ($log['date'] < $trim_time) {
138 $old_lines[$log['date'] . ".$i"] = $lines[$i];
141 $out_lines[$log['date'] . ".$i"] = $lines[$i];
/dokuwiki/inc/lang/id/
H A Dlogin.txt3 Anda belum login! Masukkan data autentifikasi dibawah ini untuk masuk log (login). Cookies harus diaktifkan agar bisa login.
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG1028 * Apache log file (Tux)
/dokuwiki/lib/plugins/logviewer/lang/cs/
H A Dintro.txt

12