Skip to content

Commit

Permalink
Remove cloudtrail debug log from autoencoder source stage (#1865)
Browse files Browse the repository at this point in the history
Closes #1697

## By Submitting this PR I confirm:
- I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md).
- When the PR is ready for review, new or existing tests cover these changes.
- When the PR is ready for review, the documentation is up to date with these changes.

Authors:
  - Christopher Harris (https://github.com/cwharris)

Approvers:
  - Anuradha Karuppiah (https://github.com/AnuradhaKaruppiah)

URL: #1865
  • Loading branch information
cwharris authored Aug 30, 2024
1 parent 5a17b92 commit d36ec8e
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import logging
import os
import typing
from abc import abstractmethod
Expand All @@ -30,8 +29,6 @@
from morpheus.pipeline.stage_schema import StageSchema
from morpheus.utils.directory_watcher import DirectoryWatcher

logger = logging.getLogger(__name__)


class AutoencoderSourceStage(PreallocatorMixin, SingleOutputSource):
"""
Expand Down Expand Up @@ -204,12 +201,6 @@ def batch_user_split(x: typing.List[pd.DataFrame],

combined_df.index.name = saved_index_name

logger.debug(
"CloudTrail loading complete. Total rows: %d. Timespan: %s",
len(combined_df),
str(combined_df.loc[combined_df.index[-1], datetime_column_name] -
combined_df.loc[combined_df.index[0], datetime_column_name]))

# Get the users in this DF
unique_users = combined_df[userid_column_name].unique()

Expand Down

0 comments on commit d36ec8e

Please sign in to comment.