mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
Fix issues in wlog man page
* fix spelling errors * move man page from section 1 to section 7 * fix the man page header to match the actual section * adapt the packages for wlog.7 Fixes #3632
This commit is contained in:
parent
e60d0d529a
commit
c82cd6cb57
@ -6,7 +6,7 @@
|
|||||||
<term>wlog environment variable</term>
|
<term>wlog environment variable</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>xfreerdp uses wLog as its log facility, you can refer to the
|
<para>xfreerdp uses wLog as its log facility, you can refer to the
|
||||||
corresponding man page (wlog(1)) for more informations. Arguments passed
|
corresponding man page (wlog(7)) for more informations. Arguments passed
|
||||||
via the <replaceable>/log-level</replaceable> or <replaceable>/log-filters</replaceable>
|
via the <replaceable>/log-level</replaceable> or <replaceable>/log-filters</replaceable>
|
||||||
have precedence over the environment variables.</para>
|
have precedence over the environment variables.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
opt/freerdp-nightly/lib/*.so.*
|
opt/freerdp-nightly/lib/*.so.*
|
||||||
opt/freerdp-nightly/bin
|
opt/freerdp-nightly/bin
|
||||||
opt/freerdp-nightly/share/man/man1/xfreerdp.1*
|
opt/freerdp-nightly/share/man/man1/xfreerdp.1*
|
||||||
opt/freerdp-nightly/share/man/man1/wlog.1*
|
opt/freerdp-nightly/share/man/man7/wlog.7*
|
||||||
|
@ -135,10 +135,11 @@ export NO_BRP_CHECK_RPATH true
|
|||||||
%dir %{INSTALL_PREFIX}/share/
|
%dir %{INSTALL_PREFIX}/share/
|
||||||
%dir %{INSTALL_PREFIX}/share/man/
|
%dir %{INSTALL_PREFIX}/share/man/
|
||||||
%dir %{INSTALL_PREFIX}/share/man/man1
|
%dir %{INSTALL_PREFIX}/share/man/man1
|
||||||
|
%dir %{INSTALL_PREFIX}/share/man/man7
|
||||||
%{INSTALL_PREFIX}/%{_lib}/*.so.*
|
%{INSTALL_PREFIX}/%{_lib}/*.so.*
|
||||||
%{INSTALL_PREFIX}/bin/
|
%{INSTALL_PREFIX}/bin/
|
||||||
%{INSTALL_PREFIX}/share/man/man1/xfreerdp.1*
|
%{INSTALL_PREFIX}/share/man/man1/xfreerdp.1*
|
||||||
%{INSTALL_PREFIX}/share/man/man1/wlog.1*
|
%{INSTALL_PREFIX}/share/man/man7/wlog.7*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
@ -176,9 +176,9 @@ endif()
|
|||||||
|
|
||||||
if(WITH_MANPAGES)
|
if(WITH_MANPAGES)
|
||||||
if(OPENBSD)
|
if(OPENBSD)
|
||||||
install(FILES wlog.1 DESTINATION man/man1)
|
install(FILES wlog.7 DESTINATION man/man7)
|
||||||
else()
|
else()
|
||||||
install(FILES wlog.1 DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/man/man1)
|
install(FILES wlog.7 DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/man/man7)
|
||||||
endif()
|
endif()
|
||||||
endif(WITH_MANPAGES)
|
endif(WITH_MANPAGES)
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
.\" Written by David Fort (contact@hardening-consulting.com)
|
.\" Written by David Fort (contact@hardening-consulting.com)
|
||||||
.\" Process this file with
|
.\" Process this file with
|
||||||
.\" groff -man -Tascii foo.1
|
.\" groff -man -Tascii wlog.7
|
||||||
.\"
|
.\"
|
||||||
.TH wLog 13 "June 2016" Version "1.0"
|
.TH wLog 7 "June 2016" Version "2.0"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
wLog \- WinPR logging facility
|
wLog \- WinPR logging facility
|
||||||
|
|
||||||
@ -53,7 +53,7 @@ print everything including packets dumps
|
|||||||
.IP DEBUG
|
.IP DEBUG
|
||||||
debug messages
|
debug messages
|
||||||
.IP INFO
|
.IP INFO
|
||||||
general informations
|
general information
|
||||||
.IP WARN
|
.IP WARN
|
||||||
warnings
|
warnings
|
||||||
.IP ERROR
|
.IP ERROR
|
||||||
@ -113,7 +113,7 @@ the level to output messages for
|
|||||||
|
|
||||||
.IP WLOG_FILTER
|
.IP WLOG_FILTER
|
||||||
sets a filter for WLog messages. Only the filtered messages are
|
sets a filter for WLog messages. Only the filtered messages are
|
||||||
printed. The format of the filter is a serie of \<logger name\>:\<level\> separated by
|
printed. The format of the filter is a series of \<logger name\>:\<level\> separated by
|
||||||
comas
|
comas
|
||||||
|
|
||||||
example: WLOG_FILTER=core.channel:DEBUG,dummy:TRACE
|
example: WLOG_FILTER=core.channel:DEBUG,dummy:TRACE
|
Loading…
Reference in New Issue
Block a user