Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Include the process-id in the logfile message for warnings. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
420d007adfba956642e8e15f5055326f |
| User & Date: | drh 2025-04-07 05:14:04.079 |
Context
|
2025-04-07
| ||
| 05:25 | Make the default value for email-send-relayhost be "localhost" check-in: 6c7066a1c5 user: drh tags: trunk | |
| 05:14 | Include the process-id in the logfile message for warnings. check-in: 420d007adf user: drh tags: trunk | |
| 05:06 | On the notification setup page, add a Refresh button to Status. Make Relay the first choice. check-in: cad72b796f user: drh tags: trunk | |
Changes
Changes to src/printf.c.
| ︙ | ︙ | |||
1098 1099 1100 1101 1102 1103 1104 |
pNow->tm_hour, pNow->tm_min, pNow->tm_sec);
va_start(ap, zFormat);
if( zFormat[0]=='X' ){
bDetail = 1;
zFormat++;
}
vfprintf(out, zFormat, ap);
| | | 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 |
pNow->tm_hour, pNow->tm_min, pNow->tm_sec);
va_start(ap, zFormat);
if( zFormat[0]=='X' ){
bDetail = 1;
zFormat++;
}
vfprintf(out, zFormat, ap);
fprintf(out, " (pid %d)\n", (int)getpid());
va_end(ap);
if( g.zPhase!=0 ) fprintf(out, "while in %s\n", g.zPhase);
if( bDetail ){
cgi_print_all(1,3,out);
}else{
for(i=0; i<count(azEnv); i++){
char *p;
|
| ︙ | ︙ |