Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
124ed1c0
Commit
124ed1c0
authored
Jun 22, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
print date in http_log
Originally committed as revision 13863 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
fa288df4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
ffserver.c
ffserver.c
+9
-0
No files found.
ffserver.c
View file @
124ed1c0
...
...
@@ -306,10 +306,19 @@ static FILE *logfile = NULL;
static
void
__attribute__
((
format
(
printf
,
1
,
2
)))
http_log
(
const
char
*
fmt
,
...)
{
static
int
print_prefix
=
1
;
va_list
ap
;
va_start
(
ap
,
fmt
);
if
(
logfile
)
{
if
(
print_prefix
)
{
time_t
current
=
time
(
0
);
char
buffer
[
32
];
strncpy
(
buffer
,
ctime
(
&
current
),
31
);
buffer
[
strlen
(
buffer
)
-
1
]
=
0
;
// remove '\n'
fprintf
(
logfile
,
"%s "
,
buffer
);
}
print_prefix
=
strstr
(
fmt
,
"
\n
"
)
!=
NULL
;
vfprintf
(
logfile
,
fmt
,
ap
);
fflush
(
logfile
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment