180件ヒット
[1-100件を表示]
(0.157秒)
ライブラリ
-
irb
/ context (36) - mkmf (48)
-
net
/ pop (12) -
net
/ smtp (24) - rake (12)
-
syslog
/ logger (12) -
webrick
/ log (36)
クラス
-
IRB
:: Context (36) -
Net
:: POP3 (12) -
Net
:: SMTP (24) -
Rake
:: Application (12) -
Syslog
:: Logger (12) -
WEBrick
:: BasicLog (36)
モジュール
- Kernel (48)
キーワード
- debug? (24)
-
debug
_ level (12) -
debug
_ level= (12) -
debug
_ output= (12) -
enable
_ config (24) - log (12)
-
set
_ debug _ output (24) -
tty
_ output= (12) -
with
_ config (24)
検索結果
先頭5件
-
WEBrick
:: BasicLog # debug(msg) -> () (21134.0) -
ログレベル DEBUG で文字列 msg をログに記録します。 自身の level が DEBUG より重要度が高い場合には記録しません。
...ログレベル DEBUG で文字列 msg をログに記録します。
自身の level が DEBUG より重要度が高い場合には記録しません。
行頭に level を表す文字列が追加されます。
msg の終端が "\n" でない場合には "\n" を追加します。
@param msg... -
Syslog
:: Logger # debug(message = nil , &block) -> true (18240.0) -
DEBUG 情報を出力します。syslog の DEBUG の情報として記録されます。
...
DEBUG 情報を出力します。syslog の DEBUG の情報として記録されます。
ブロックを与えなかった場合は、message をメッセージとしてログを出力します。
ブロックを与えた場合は、ブロックを評価した結果をメッセージとして......ログを出力します。
引数とブロックを同時に与えた場合は、message をメッセージとしてログを出
力します(ブロックは評価されません)。
@see Syslog::Logger::LEVEL_MAP, Logger#debug... -
IRB
:: Context # debug? -> bool (9130.0) -
irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し ているかどうかを返します。
...irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し
ているかどうかを返します。
デフォルト値は false です。
@see IRB::Context#debug_level, IRB::Context#debug_level=... -
IRB
:: Context # debug _ level=(val) (9120.0) -
irb のデバッグレベルを val に設定します。
...irb のデバッグレベルを val に設定します。
.irbrc ファイル中で IRB.conf[:DEBUG_LEVEL] を設定する事でも同様の操作
が行えます。
@see IRB::Context#debug_level, IRB::Context#debug?... -
WEBrick
:: BasicLog # debug? -> bool (9118.0) -
自身のログレベルが DEBUG 以上の時に true を返します。 そうでない場合に false を返します。
...自身のログレベルが DEBUG 以上の時に true を返します。
そうでない場合に false を返します。... -
IRB
:: Context # debug _ level -> Integer (9114.0) -
irb のデバッグレベルを返します。
...irb のデバッグレベルを返します。
デフォルト値は 0 です。
@see IRB::Context#debug_level=, IRB::Context#debug?... -
Kernel
# enable _ config(config , default) {|config , default| . . . } -> bool | String (6319.0) -
configure のオプションを検査します。
...
configure のオプションを検査します。
configure のオプションに --enable-<config> が指定された場合は、真を返し
ます。--disable-<config> が指定された場合は。偽を返します。どちらでもな
い場合は default を返します。
これはデバ......義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if enable_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
end... -
Kernel
# with _ config(config , default = nil) {|config , default| . . . } -> bool | String (6319.0) -
configure のオプションを検査します。
...
configure のオプションを検査します。
configure のオプションに --with-<config> が指定された場合は真を返しま
す。--without-<config> が指定された場合は偽を返します。どちらでもない場
合は default を返します。
これはデバッグ情......定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if with_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
end... -
Kernel
# enable _ config(config , default) -> bool | String (6219.0) -
configure のオプションを検査します。
...
configure のオプションを検査します。
configure のオプションに --enable-<config> が指定された場合は、真を返し
ます。--disable-<config> が指定された場合は。偽を返します。どちらでもな
い場合は default を返します。
これはデバ......義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if enable_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
end...