Commit 521dd4af authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Python: marked the LogParser module and tnl-log-to-html.py script as deprecated

parent b0016afe
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
#!/usr/bin/env python3

import warnings
warnings.warn("The CustomLogging format for TNL benchmarks is deprecated. Please switch your benchmark "
              "to JsonLogging and use the tnl-benchmark-to-html.py script for post-processing.",
              DeprecationWarning)

import collections

try:
+5 −0
Original line number Diff line number Diff line
#!/usr/bin/env python3

import warnings
warnings.warn("The CustomLogging format for TNL benchmarks is deprecated. Please switch your benchmark "
              "to JsonLogging and use the tnl-benchmark-to-html.py script for post-processing.",
              DeprecationWarning)

import sys

from TNL.LogParser import LogParser