Skip to content

Commit

Permalink
remove cloudtrail debug log from autoencoder source stage
Browse files Browse the repository at this point in the history
  • Loading branch information
cwharris committed Aug 26, 2024
1 parent 37ccbc3 commit 1a58ce3
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 1a58ce3

Please sign in to comment.