netbox-memory-input 0.1__tar.gz → 0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: netbox_memory_input
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: Input VM memory in GB instead of MB in NetBox.
5
5
  Home-page: https://itandtel.at
6
6
  Author: jannis
@@ -5,13 +5,6 @@ import logging
5
5
  logger = logging.getLogger('netbox.netbox_memory_input')
6
6
  logger.setLevel(logging.DEBUG)
7
7
 
8
- # Add debug handler if not present
9
- if not logger.handlers:
10
- handler = logging.FileHandler('/var/log/netbox/memory_input_debug.log')
11
- handler.setLevel(logging.DEBUG)
12
- formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
13
- handler.setFormatter(formatter)
14
- logger.addHandler(handler)
15
8
 
16
9
  logger.debug("MemoryGBVirtualMachineForm module loaded")
17
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: netbox_memory_input
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: Input VM memory in GB instead of MB in NetBox.
5
5
  Home-page: https://itandtel.at
6
6
  Author: jannis
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
2
2
 
3
3
  setup(
4
4
  name='netbox_memory_input',
5
- version='0.1',
5
+ version='0.2',
6
6
  description='Input VM memory in GB instead of MB in NetBox.',
7
7
  url='https://itandtel.at',
8
8
  author='jannis',