1237件ヒット
[101-200件を表示]
(0.131秒)
ライブラリ
- ビルトイン (120)
- debug (12)
- fileutils (19)
- forwardable (24)
- getoptlong (12)
-
irb
/ context (36) - logger (201)
- mkmf (48)
-
net
/ ftp (24) -
net
/ imap (24) - openssl (24)
- optparse (12)
- rake (12)
-
rdoc
/ markdown (12) - ripper (24)
- shell (69)
- syslog (216)
-
syslog
/ logger (36) -
webrick
/ log (60)
クラス
- GetoptLong (12)
-
IRB
:: Context (36) - Logger (189)
-
Net
:: FTP (24) -
Net
:: IMAP (24) - Object (12)
-
OptionParser
:: ParseError (12) -
RDoc
:: Markdown (12) -
Rake
:: Application (12) - Ripper (24)
-
RubyVM
:: InstructionSequence (24) - Shell (69)
-
Syslog
:: Logger (36) - Thread (12)
- Tracer (12)
-
WEBrick
:: BasicLog (60)
モジュール
- FileUtils (19)
- Forwardable (24)
- Kernel (120)
-
Logger
:: Severity (12) - OpenSSL (24)
- Syslog (120)
-
Syslog
:: Level (96)
キーワード
-
$ -d (12) -
$ DEBUG (12) - DEBUG= (12)
-
LEVEL
_ MAP (12) -
LOG
_ ALERT (12) -
LOG
_ CRIT (12) -
LOG
_ DEBUG (12) -
LOG
_ EMERG (12) -
LOG
_ ERR (12) -
LOG
_ INFO (12) -
LOG
_ NOTICE (12) -
LOG
_ WARNING (12) - Rubyの起動 (12)
-
SCRIPT
_ LINES _ _ (12) - alert (12)
- caller (36)
-
compile
_ option (12) -
compile
_ option= (12) -
cp
_ lr (7) -
cp
_ r (12) - crit (12)
-
datetime
_ format (12) -
datetime
_ format= (12) - debug (120)
- debug= (48)
- debug? (60)
-
debug
_ level (12) -
debug
_ level= (12) -
debug
_ mode (12) -
debug
_ mode= (12) -
debug
_ output _ exclusive _ unlock (3) -
debug
_ output _ lock (6) -
debug
_ output _ locked? (6) -
debug
_ output _ synchronize (6) -
debug
_ output _ try _ lock (6) -
debug
_ output _ unlock (6) - emerg (12)
-
enable
_ config (24) - err (12)
- error (24)
- fatal (24)
-
filter
_ backtrace (12) - info (36)
- irb (12)
- log (12)
- logger (12)
- mask (12)
- mask= (12)
- new (33)
- notice (12)
-
rb
_ ary _ to _ s (12) -
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / help _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
set
_ trace _ func (12) -
trace
_ func (12) -
tty
_ output= (12) - unknown (24)
- warn (24)
- warning (12)
-
with
_ config (24) - yydebug (12)
- yydebug= (12)
- 制御構造 (12)
検索結果
先頭5件
-
Shell
. debug _ output _ try _ lock -> bool (12201.0) -
@todo
...@todo
@see Mutex#try_lock......@todo
@see Thread::Mutex#try_lock... -
Shell
. debug _ output _ unlock -> Mutex | nil (12201.0) -
@todo
...@todo
@see Mutex#unlock......@todo
@see Thread::Mutex#unlock... -
Syslog
:: Level :: LOG _ DEBUG -> Integer (12201.0) -
優先度(priorities)を示す定数。 定数 の詳細については syslog(3) を参照してください。
...優先度(priorities)を示す定数。
定数 の詳細については syslog(3) を参照してください。... -
Logger
# debug(progname = nil) -> true (9242.0) -
ログレベルが DEBUG のメッセージを出力します。
...ログレベルが DEBUG のメッセージを出力します。
現在の Logger のログレベルが DEBUG よりも高い場合、メッセージは出力されません。
ブロックを与えなかった場合は、progname をメッセージとしてログを出力します。
ブロッ......定します。
ブロックを与えた場合は、プログラム名を文字列として与えます。
//emlist[例][ruby]{
logger.debug "Waiting for input from user"
# ...
logger.debug { "User typed #{input}" }
logger.debug("MainApp") { "Received connection from #{ip}" }
//}... -
Logger
# debug(progname = nil) { . . . } -> true (9242.0) -
ログレベルが DEBUG のメッセージを出力します。
...ログレベルが DEBUG のメッセージを出力します。
現在の Logger のログレベルが DEBUG よりも高い場合、メッセージは出力されません。
ブロックを与えなかった場合は、progname をメッセージとしてログを出力します。
ブロッ......定します。
ブロックを与えた場合は、プログラム名を文字列として与えます。
//emlist[例][ruby]{
logger.debug "Waiting for input from user"
# ...
logger.debug { "User typed #{input}" }
logger.debug("MainApp") { "Received connection from #{ip}" }
//}... -
Shell
. debug=(val) (9237.0) -
デバッグ用のフラグを設定します。
...デバッグ用のフラグを設定します。
@param val bool 値や整数値を指定します。詳細は下記を参照してください。
# debug: true -> normal debug
# debug: 1 -> eval definition debug
# debug: 2 -> detail inspect debug... -
Logger
# debug? -> bool (9235.0) -
現在の Logger オブジェクトが DEBUG 以上のログレベルのメッセージを記録するなら 真を返します。
...現在の Logger オブジェクトが DEBUG 以上のログレベルのメッセージを記録するなら
真を返します。
//emlist[例][ruby]{
require 'logger'
logger = Logger.new(STDOUT, level: Logger::Severity::DEBUG)
logger.debug? # => true
logger = Logger.new(STDOUT, level: Logger::Se......verity::INFO)
logger.debug? # => false
//}... -
WEBrick
:: BasicLog # debug? -> bool (9217.0) -
自身のログレベルが DEBUG 以上の時に true を返します。 そうでない場合に false を返します。
...自身のログレベルが DEBUG 以上の時に true を返します。
そうでない場合に false を返します。... -
OpenSSL
. # debug -> bool (9207.0) -
デバッグモードが on ならば true を返します。
...デバッグモードが on ならば true を返します。
@see OpenSSL.#debug=... -
Shell
# debug -> bool | Integer (9202.0) -
@todo
@todo -
Shell
# debug? -> bool | Integer (9202.0) -
@todo
@todo