Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Removed log function for category_config(not needed) | c8ca8a3b6b968f1835697073e7d5fe1ea70b15ba | Sebastian Fricke | 2020-01-15 14:54:15 |
Added category_config functionality | 7bd8256398b4af5c1feb3033d74cd9f29b047edc | Sebastian Fricke | 2020-01-15 14:53:20 |
improved error handling & adjusted names to naming convention | cfcd91090a2598c6c51576bcdd53e03ab6c2f59b | Sebastian Fricke | 2020-01-15 14:47:42 |
Refactor CategoryChooser | 562e6657c6fef89d0584731e54325cec013268a7 | Sebastian Fricke | 2020-01-15 14:42:11 |
Add category_config location to the script config | 8698e4a99d63b06fde5c39787fc7d6f7400b9f47 | Sebastian Fricke | 2020-01-15 14:29:47 |
Refactor findConfig | 321ae9d7edd69e8be0755cf5ba82289944d06ca3 | Sebastian Fricke | 2020-01-15 14:26:09 |
Add logging function: no category config warning | e8323843a3b6c24ef274d6a12c10d76aa8b8f591 | Sebastian Fricke | 2020-01-14 14:38:39 |
Add module + test for the category-id config | fadaf4515aab1009f4df4a1af5a2e8f82077bc4c | Sebastian Fricke | 2020-01-14 14:35:44 |
improved coding style on log functions | caf97eec6c6026aa051bc98f02a90e649a6e4754 | Sebastian Fricke | 2020-01-14 10:23:17 |
fixed a typo in the product type list | 707e993b953aea0d653ffbca136bbe81bb36ea13 | Sebastian Fricke | 2020-01-14 10:22:34 |
added home product properties, improved dictionary iteration, fixed a key error in get_attributes | 30d4aed4403c39a6865e30c0384c3360d375cbb6 | Sebastian Fricke | 2020-01-14 10:21:56 |
removed warning for missing flatfile columns as requested | bfe6e22f7acb282a3af8423c81ceacf9fcf21ef4 | Sebastian Fricke | 2020-01-13 15:05:27 |
added initialization for the position variable | 8331f92d62deb9ba7be7e97201c7c6afa7cf732a | Sebastian Fricke | 2020-01-13 14:47:57 |
improved code style and fixed problem where the dictionary containing the path was given to functions instead of the path itself | 1a5bf99751b599f48d4687a9a6cbd55ffe213f5a | Sebastian Fricke | 2020-01-13 14:47:13 |
removed Barcode missing warning on parents | b592779c6cc1588e2ae40394cab53d0d047746e7 | Sebastian Fricke | 2020-01-13 14:46:16 |
Added support for the amazon product types furnitureanddecor, bedandbath, swimwear | b56708e55c3283a6cc2d3803b2abbb99bb125928 | Sebastian Fricke | 2020-01-13 14:16:40 |
fix failing attribute sync | 87ea4bce17eba6c9c9842eaf9eb26249bf8d7da5 | Sebastian Fricke | 2020-01-13 12:15:35 |
new config handling | d65bdfae89eceab6b1319d01373cf70ac7d8b63e | Sebastian Fricke | 2019-11-13 08:57:14 |
Fixed a problem, that caused Data to not pass sorting; Fixed error handling with the product type; Updated category ids | 9a62d369fb24bc80765cd19e31fb255398fb8ed5 | Sebastian Fricke | 2019-09-12 09:27:54 |
fixed a merge conflict bug | e6b4d9613237009d980cdbfc7ec65c3383a3495a | Sebastian Fricke | 2019-08-16 11:31:02 |
File | Lines added | Lines deleted |
---|---|---|
packages/log_files.py | 0 | 10 |
File packages/log_files.py changed (mode: 100644) (index da20401..c4d6478) | |||
... | ... | def emptyFieldWarningLog(log_path, step_number, step_desc, field_name, file_name | |
48 | 48 | emptyFieldLogger.warning("EMPTY FIELD: In the file {3}, the field {2} is empty! At Step {0} : {1}.".format(step_number, step_desc, field_name, file_name)) | emptyFieldLogger.warning("EMPTY FIELD: In the file {3}, the field {2} is empty! At Step {0} : {1}.".format(step_number, step_desc, field_name, file_name)) |
49 | 49 | except Exception as err: | except Exception as err: |
50 | 50 | print("ERROR @ emptyFieldWarningLog: {0}".format(err)) | print("ERROR @ emptyFieldWarningLog: {0}".format(err)) |
51 | |||
52 | def noCategoryFileLog(log_path, file_name): | ||
53 | try: | ||
54 | no_category_logger = function_logger(log_path, | ||
55 | logging.WARN, logging.WARN) | ||
56 | no_category_logger.warning( | ||
57 | "NO CATEGORY FILE FOUND: fill or create the file at: {0}" | ||
58 | .format(filename)) | ||
59 | except Exception as err: | ||
60 | print("ERROR @ noCategoryFileLog: {0}".format(err)) |