Removed debugging
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
9c90f03142
commit
1ce95b6eac
1 changed files with 0 additions and 5 deletions
|
@ -531,21 +531,16 @@
|
||||||
|
|
||||||
function changeLogFormatter(value) {
|
function changeLogFormatter(value) {
|
||||||
|
|
||||||
console.dir(value);
|
|
||||||
var result = '';
|
var result = '';
|
||||||
var pretty_index = '';
|
var pretty_index = '';
|
||||||
|
|
||||||
console.error('first the formatter');
|
|
||||||
|
|
||||||
for (var index in value) {
|
for (var index in value) {
|
||||||
|
|
||||||
|
|
||||||
// Check if it's a custom field
|
// Check if it's a custom field
|
||||||
if (index.startsWith('_snipeit_')) {
|
if (index.startsWith('_snipeit_')) {
|
||||||
console.error('It is a custom field');
|
|
||||||
pretty_index = index.replace("_snipeit_", "Custom:_");
|
pretty_index = index.replace("_snipeit_", "Custom:_");
|
||||||
} else {
|
} else {
|
||||||
console.error('Not a custom field');
|
|
||||||
pretty_index = index;
|
pretty_index = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue