Skip to content

Commit

Permalink
Removed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Severino committed Oct 14, 2024
1 parent 13b5cee commit 2d9d4da
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions app/Import/EntityImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ private function verifyEntityType($entityTypeId): bool {
private function verifyAttributeMapping($headers): bool {
$nameErrors = [];
$indexErrors = [];

info($this->attributesMap);

foreach($this->attributesMap as $attribute => $column) {
if(trim($column) == "") {
Expand Down
1 change: 0 additions & 1 deletion app/Import/ImportResolution.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public function update(): ImportResolution {
public function conflict(string $message): ImportResolution {
$this->errors[] = $message;
$this->status[ImportResolutionType::CONFLICT->name]++;
info($message);
return $this;
}

Expand Down
3 changes: 0 additions & 3 deletions tests/Feature/ApiDataImporterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ public function testValidationWithInvalidTypeId() {
}

public function testValidationInvalidFile() {
info("============= INTERESTING TEST");
$this->userRequest()->post('/api/v1/entity/import/validate', [
'file' => null,
'data' => $this->getData(),
Expand All @@ -216,8 +215,6 @@ public function testValidationInvalidFile() {
]
]
]);
info("============= INTERESTING TEST END");

}


Expand Down

0 comments on commit 2d9d4da

Please sign in to comment.