Merge branch 'log_no_truncate' into storageareas
This commit is contained in:
commit
9f301e3c51
|
@ -422,7 +422,7 @@ void Logger::logFile( const std::string &logFile ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Logger::openFile() {
|
void Logger::openFile() {
|
||||||
if ( mLogFile.size() && (mLogFileFP = fopen( mLogFile.c_str() ,"w" )) == (FILE *)NULL ) {
|
if ( mLogFile.size() && (mLogFileFP = fopen( mLogFile.c_str() ,"a" )) == (FILE *)NULL ) {
|
||||||
mFileLevel = NOLOG;
|
mFileLevel = NOLOG;
|
||||||
Fatal( "fopen() for %s, error = %s", mLogFile.c_str(), strerror(errno) );
|
Fatal( "fopen() for %s, error = %s", mLogFile.c_str(), strerror(errno) );
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -328,14 +328,14 @@ th.table-th-sort span.table-th-sort-span {
|
||||||
float: right;
|
float: right;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background: url("../graphics/arrow-s-u.gif") no-repeat 0 0;
|
background: url("/skins/classic/graphics/arrow-s-u.png") no-repeat 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
th.table-th-sort-rev span.table-th-sort-span {
|
th.table-th-sort-rev span.table-th-sort-span {
|
||||||
float: right;
|
float: right;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background: url("../graphics/arrow-s-d.gif") no-repeat 0 0;
|
background: url("/skins/classic/graphics/arrow-s-d.png") no-repeat 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-tr-odd {
|
.table-tr-odd {
|
||||||
|
|
|
@ -352,14 +352,14 @@ th.table-th-sort span.table-th-sort-span {
|
||||||
float: right;
|
float: right;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background: url("../graphics/arrow-s-u.gif") no-repeat 0 0;
|
background: url("/skins/classic/graphics/arrow-s-u.png") no-repeat 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
th.table-th-sort-rev span.table-th-sort-span {
|
th.table-th-sort-rev span.table-th-sort-span {
|
||||||
float: right;
|
float: right;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background: url("../graphics/arrow-s-d.gif") no-repeat 0 0;
|
background: url("/skins/classic/graphics/arrow-s-d.png") no-repeat 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-tr-odd {
|
.table-tr-odd {
|
||||||
|
|
|
@ -343,14 +343,14 @@ th.table-th-sort span.table-th-sort-span {
|
||||||
float: right;
|
float: right;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background: url("../graphics/arrow-s-u.gif") no-repeat 0 0;
|
background: url("/skins/classic/graphics/arrow-s-u.png") no-repeat 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
th.table-th-sort-rev span.table-th-sort-span {
|
th.table-th-sort-rev span.table-th-sort-span {
|
||||||
float: right;
|
float: right;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background: url("../graphics/arrow-s-d.gif") no-repeat 0 0;
|
background: url("/skins/classic/graphics/arrow-s-d.png") no-repeat 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-tr-odd {
|
.table-tr-odd {
|
||||||
|
|
Loading…
Reference in New Issue