[Frameworkspider-svn] spider-commit [63]

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2009年 4月 17日 (金) 12:37:52 JST


Revision: 63
          http://svn.sourceforge.jp/view?root=frameworkspider&view=rev&rev=63
Author:   m_nakashima
Date:     2009-04-17 12:37:52 +0900 (Fri, 17 Apr 2009)

Log Message:
-----------


Modified Paths:
--------------
    current/DATA/lib/spider/HttpRequest.class.php
    current/README.txt


-------------- next part --------------
Modified: current/DATA/lib/spider/HttpRequest.class.php
===================================================================
--- current/DATA/lib/spider/HttpRequest.class.php	2009-04-17 03:33:31 UTC (rev 62)
+++ current/DATA/lib/spider/HttpRequest.class.php	2009-04-17 03:37:52 UTC (rev 63)
@@ -90,9 +90,13 @@
 	/**
 	 * エラーメッセージを追加します。
 	 * @param $message エラーメッセージ
+	 * @param $log_level ログ出力を同時に行う場合に指定します。falseを指定すると記録しません。デフォルトはfalseです。
 	 */
-	function addError( $message ) {
+	function addError( $message, $log_level=false ) {
 		array_push( $this->errors, $message );
+		if( false !== $log_level && is_numeric($log_level) ) {
+			$this->writeLog( $message, $log_level );
+		}
 	}
 	/**
 	 * エラーがあるか確認します。

Modified: current/README.txt
===================================================================
--- current/README.txt	2009-04-17 03:33:31 UTC (rev 62)
+++ current/README.txt	2009-04-17 03:37:52 UTC (rev 63)
@@ -3,6 +3,9 @@
 **
 ** このファイルにはコミットごとに変更点とファイル名を記述します。
 **
+-- 2009-04-17
+1) ログ出力周りの整理を行いました。ModuleBaseにあったログ出力機能をHttpRequestに移しました。
+
 -- 2009-04-16
 1) 公開フォルダ直下に配置した.defaultファイルが有効にならない問題の修正
    lib/spider/Builder.class.phpを修正しました。



Frameworkspider-svn メーリングリストの案内
Back to archive index