You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.rst
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,11 @@ Changes
4
4
0.0.2 (2019-XX-XX)
5
5
------------------
6
6
7
-
* FIX: Implementation of truncate did rely on the assumption that the current working directory of the file system process would not change. This was risky.
7
+
* FEATURE: New flag ``-j`` for JSON-formatted log output
8
+
* FEATURE: New field ``command`` allowed in XML configuration files for filtering for command strings with regular expressions
9
+
* FEATURE: All fields in ``include`` and ``exclude`` tags, e.g. ``extension`` or ``uid``, become optional / implicit and can be omitted.
10
+
* FEATURE: (UNTESTED) Mac OS X support. Test framework still relies on Linux.
11
+
* FIX: Several implementations of FUSE calls such as truncate did rely on the assumption that the current working directory of the file system process would not change. This was risky. LoggedFS-python does also NOT change the current working directory anymore on its own.
Support for MAC OS X and BSD requires a minor change only, but has yet not been added: Access to the system log is currently being achieved through ``logging.handlers.SysLogHandler(address = '/dev/log')``, a Linux-only solution.
91
+
Support for MAC OS X is implemented but has yet not been tested.
92
92
93
93
.. _Python Package Index: https://pypi.org/
94
94
@@ -112,9 +112,7 @@ To stop recording, just unmount as usual:
112
112
Configuration
113
113
=============
114
114
115
-
LoggedFS-python can use an XML configuration file if you want it to log
116
-
operations only for certain files, for certain users, or for certain operations.
117
-
The format is fully compatible with LoggedFS' original format.
115
+
LoggedFS-python can use an XML configuration file if you want it to log operations only for certain files, for certain users, or for certain operations. LoggedFS-python is fully compatible with configuration files in LoggedFS' original format. Yet it can also handle additional fields (e.g. the ``command`` field).
118
116
119
117
Here is a sample configuration file :
120
118
@@ -124,12 +122,12 @@ Here is a sample configuration file :
0 commit comments