Skip to content

Commit

Permalink
misc: Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim-Encord committed Jan 8, 2025
1 parent 5e6689e commit fc73455
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions encord/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"""

import datetime
import logging
from typing import Any, Dict, Iterable, Iterator, List, Optional, Set, Tuple, Union
from uuid import UUID

Expand Down Expand Up @@ -60,6 +61,8 @@
from encord.utilities.project_user import ProjectUser, ProjectUserRole
from encord.workflow import Workflow

logger = logging.getLogger(__name__)


class Project:
"""
Expand Down Expand Up @@ -1343,3 +1346,4 @@ def analyze_prediction(self, label_branch_name: str) -> None:
payload=ActivePredictionPayload(label_branch_name=label_branch_name),
result_type=None,
)
logger.info("Prediction imported initiated in Active. Please check the platform to see progress")

0 comments on commit fc73455

Please sign in to comment.